2018-01-23 05:37:36 +01:00
|
|
|
import 'core-js';
|
2018-01-16 20:48:34 +01:00
|
|
|
import 'zone.js/dist/zone';
|
|
|
|
|
2018-01-16 21:58:17 +01:00
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
2018-01-16 20:48:34 +01:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
2018-01-16 21:58:17 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
2018-01-23 05:37:36 +01:00
|
|
|
import { ServicesModule } from './services/services.module';
|
2018-01-16 21:58:17 +01:00
|
|
|
|
2018-01-16 20:48:34 +01:00
|
|
|
import { AppComponent } from './app.component';
|
2018-01-16 21:58:17 +01:00
|
|
|
import { LoginComponent } from './accounts/login.component';
|
2018-01-16 22:12:26 +01:00
|
|
|
import { VaultComponent } from './vault/vault.component';
|
2018-01-16 20:48:34 +01:00
|
|
|
|
|
|
|
@NgModule({
|
2018-01-16 21:58:17 +01:00
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
|
|
|
AppRoutingModule,
|
2018-01-23 05:37:36 +01:00
|
|
|
ServicesModule,
|
2018-01-16 21:58:17 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
AppComponent,
|
|
|
|
LoginComponent,
|
2018-01-16 22:12:26 +01:00
|
|
|
VaultComponent,
|
2018-01-16 21:58:17 +01:00
|
|
|
],
|
|
|
|
providers: [],
|
2018-01-16 20:48:34 +01:00
|
|
|
bootstrap: [AppComponent],
|
|
|
|
})
|
|
|
|
export class AppModule { }
|