blob: 120728bba57e5d38a4fadb2cc993874979c2ab6f [file] [log] [blame]
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { EnforcerComponent } from './enforcer/enforcer.component';
@NgModule({
declarations: [
AppComponent,
EnforcerComponent
],
imports: [
BrowserModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }