2018-04-06 15:59:49 +09:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
|
|
|
import { HttpClientModule } from '@angular/common/http';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
|
|
import { AppStoreModule } from './app-store.module';
|
|
|
|
import { AppL10NModule } from './app-l10n.module';
|
|
|
|
import { AppRPCModule } from './app-rpc.module';
|
|
|
|
import { AppRESTModule } from './app-rest.module';
|
|
|
|
import { AppLoggerModule } from './app-logger.module';
|
|
|
|
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
|
|
|
|
import { CookieService } from 'ngx-cookie-service';
|
|
|
|
import { AuthGuard } from './commons/guard/auth.guard';
|
2018-04-06 20:02:18 +09:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
2018-04-06 15:59:49 +09:00
|
|
|
|
2018-05-28 19:36:00 +09:00
|
|
|
import { AuthModule } from '@overflow/shared/auth/auth.module';
|
2018-05-28 21:05:58 +09:00
|
|
|
import { MemberModule } from '@overflow/member/member.module';
|
2018-04-12 12:22:38 +09:00
|
|
|
|
2018-04-06 15:59:49 +09:00
|
|
|
@NgModule({
|
2018-05-28 18:33:48 +09:00
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
|
|
|
BrowserAnimationsModule,
|
|
|
|
HttpClientModule,
|
|
|
|
AppRoutingModule,
|
|
|
|
AppStoreModule,
|
|
|
|
AppL10NModule,
|
|
|
|
AppRPCModule,
|
|
|
|
AppRESTModule,
|
|
|
|
AppLoggerModule,
|
2018-05-28 21:05:58 +09:00
|
|
|
MemberModule,
|
2018-05-28 19:36:00 +09:00
|
|
|
AuthModule,
|
2018-05-28 18:33:48 +09:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
AppComponent,
|
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
CookieService,
|
|
|
|
AuthGuard,
|
|
|
|
],
|
|
|
|
bootstrap: [AppComponent]
|
2018-04-06 15:59:49 +09:00
|
|
|
})
|
|
|
|
export class AppModule { }
|