2018-04-19 09:39:15 +00:00
|
|
|
import { NgModule, Inject } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
2018-05-24 06:44:13 +00:00
|
|
|
// import { InputChipModule } from '@overflow/commons/component/input-chip/input-chip.module';
|
2018-04-19 09:39:15 +00:00
|
|
|
|
|
|
|
// import { DiscoveryStoreModule } from './discovery-store.module';
|
|
|
|
// import { DiscoveryRPCModule } from './discovery-rpc.module';
|
|
|
|
import { AlertLoggerModule } from './alert-logger.module';
|
|
|
|
|
|
|
|
import { COMPONENTS } from './component';
|
|
|
|
// import { SERVICES } from './service';
|
2018-05-24 06:44:13 +00:00
|
|
|
import { PrimeNGModules } from '@overflow/commons/prime-ng/prime-ng.module';
|
2018-04-19 09:39:15 +00:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
|
|
|
// InputChipModule,
|
|
|
|
FormsModule,
|
|
|
|
PrimeNGModules,
|
|
|
|
AlertLoggerModule,
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
COMPONENTS
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
COMPONENTS,
|
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
// SERVICES,
|
|
|
|
],
|
|
|
|
})
|
|
|
|
export class AlertModule {
|
|
|
|
}
|