import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppRoutingModule } from '@app/app-routing.module'; import { AppComponent } from '@app/app.component'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import {HttpClientModule} from '@angular/common/http'; import {MutablePgpKeyStore} from '@app/_helpers'; @NgModule({ declarations: [ AppComponent, ], imports: [ BrowserModule, AppRoutingModule, BrowserAnimationsModule, HttpClientModule ], providers: [MutablePgpKeyStore], bootstrap: [AppComponent] }) export class AppModule { }