aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/core/core.module.ts
blob: 27e6ee1fb765b2d73aa5e392db9f7001a79bcfc9 (plain) (tree)
1
2
3
4
5
6
7


                                                             
                                               

                                     
                                       




                                                             

                
    

                                  






                                                                   
import { NgModule, Optional, SkipSelf } from '@angular/core';
import { CommonModule } from '@angular/common';
import { HttpModule } from '@angular/http';
import { RouterModule } from '@angular/router';

import { AuthService } from './auth';
import { MenuComponent } from './menu';
import { throwIfAlreadyLoaded } from './module-import-guard';

@NgModule({
  imports: [
    CommonModule,
    HttpModule,
    RouterModule
  ],
  declarations: [ MenuComponent ],
  exports: [ MenuComponent ],
  providers: [ AuthService ]
})
export class CoreModule {
   constructor( @Optional() @SkipSelf() parentModule: CoreModule) {
    throwIfAlreadyLoaded(parentModule, 'CoreModule');
  }
}