blob: 697415e180a8aea8566d0296123a9f6a0b585a1f [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 {}