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-23 22:58:32 +01:00
|
|
|
import { FormsModule } from '@angular/forms';
|
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-24 04:21:14 +01:00
|
|
|
import { CiphersComponent } from './vault/ciphers.component';
|
2018-01-24 05:38:56 +01:00
|
|
|
import { FallbackSrcDirective } from './directives/fallback-src.directive';
|
2018-01-24 04:21:14 +01:00
|
|
|
import { GroupingsComponent } from './vault/groupings.component';
|
2018-01-24 20:59:03 +01:00
|
|
|
import { I18nPipe } from './pipes/i18n.pipe';
|
2018-01-23 23:29:30 +01:00
|
|
|
import { IconComponent } from './vault/icon.component';
|
2018-01-16 21:58:17 +01:00
|
|
|
import { LoginComponent } from './accounts/login.component';
|
2018-01-24 05:38:56 +01:00
|
|
|
import { StopClickDirective } from './directives/stop-click.directive';
|
|
|
|
import { StopPropDirective } from './directives/stop-prop.directive';
|
2018-01-16 22:12:26 +01:00
|
|
|
import { VaultComponent } from './vault/vault.component';
|
2018-01-24 04:21:14 +01:00
|
|
|
import { ViewComponent } from './vault/view.component';
|
2018-01-16 20:48:34 +01:00
|
|
|
|
|
|
|
@NgModule({
|
2018-01-16 21:58:17 +01:00
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
2018-01-23 22:58:32 +01:00
|
|
|
FormsModule,
|
2018-01-16 21:58:17 +01:00
|
|
|
AppRoutingModule,
|
2018-01-23 05:37:36 +01:00
|
|
|
ServicesModule,
|
2018-01-16 21:58:17 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
AppComponent,
|
2018-01-24 04:21:14 +01:00
|
|
|
CiphersComponent,
|
2018-01-24 05:38:56 +01:00
|
|
|
FallbackSrcDirective,
|
2018-01-24 04:21:14 +01:00
|
|
|
GroupingsComponent,
|
2018-01-24 20:59:03 +01:00
|
|
|
I18nPipe,
|
2018-01-23 23:29:30 +01:00
|
|
|
IconComponent,
|
2018-01-16 21:58:17 +01:00
|
|
|
LoginComponent,
|
2018-01-24 05:38:56 +01:00
|
|
|
StopClickDirective,
|
2018-01-16 22:12:26 +01:00
|
|
|
VaultComponent,
|
2018-01-24 04:21:14 +01:00
|
|
|
ViewComponent,
|
2018-01-16 21:58:17 +01:00
|
|
|
],
|
|
|
|
providers: [],
|
2018-01-16 20:48:34 +01:00
|
|
|
bootstrap: [AppComponent],
|
|
|
|
})
|
|
|
|
export class AppModule { }
|