overflow-webapp/src/app/app.module.ts

37 lines
1004 B
TypeScript
Raw Normal View History

2018-01-29 04:22:32 +00:00
import { NgModule } from '@angular/core';
2018-01-25 08:03:29 +00:00
import { BrowserModule } from '@angular/platform-browser';
2018-01-25 08:03:36 +00:00
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
2018-02-09 08:05:43 +00:00
import { HttpClientModule } from '@angular/common/http';
2018-01-25 08:03:29 +00:00
import { AppRoutingModule } from './app-routing.module';
2018-01-29 06:28:28 +00:00
import { AppReducerModule } from './app-reducer.module';
2018-01-25 08:03:36 +00:00
import { MaterialModule } from './commons/ui/material/material.module';
2018-01-29 09:16:30 +00:00
import { CovalentModule } from './commons/ui/covalent/covalent.module';
2018-01-29 06:28:28 +00:00
import { AppComponent } from './app.component';
2018-01-25 08:03:29 +00:00
2018-02-27 08:34:12 +00:00
import { RESTService } from './commons/service/rest.service';
import { RPCService } from './commons/service/rpc.service';
2018-01-25 08:03:29 +00:00
@NgModule({
declarations: [
2018-01-25 08:03:36 +00:00
AppComponent,
2018-01-25 08:03:29 +00:00
],
imports: [
BrowserModule,
2018-01-25 08:03:36 +00:00
BrowserAnimationsModule,
AppRoutingModule,
2018-01-29 06:28:28 +00:00
AppReducerModule,
2018-01-25 08:03:36 +00:00
MaterialModule,
2018-01-29 09:16:30 +00:00
CovalentModule,
2018-02-09 08:05:43 +00:00
HttpClientModule,
2018-01-25 08:03:29 +00:00
],
2018-02-27 08:34:12 +00:00
providers: [
RESTService, RPCService,
],
2018-01-25 08:03:29 +00:00
bootstrap: [AppComponent]
})
export class AppModule { }