cic-staff-client/src/app/app.module.ts

24 lines
654 B
TypeScript
Raw Normal View History

2020-10-30 16:16:05 +01:00
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from '@app/app-routing.module';
import { AppComponent } from '@app/app.component';
2020-12-28 10:12:37 +01:00
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import {HttpClientModule} from '@angular/common/http';
import {MutablePgpKeyStore} from '@app/_helpers';
2020-10-30 16:16:05 +01:00
@NgModule({
declarations: [
2020-12-28 10:12:37 +01:00
AppComponent,
2020-10-30 16:16:05 +01:00
],
imports: [
BrowserModule,
2020-12-28 10:12:37 +01:00
AppRoutingModule,
BrowserAnimationsModule,
HttpClientModule
2020-10-30 16:16:05 +01:00
],
providers: [MutablePgpKeyStore],
2020-10-30 16:16:05 +01:00
bootstrap: [AppComponent]
})
export class AppModule { }