member_webapp/@overflow/noauth-probe/noauth-probe.module.ts

38 lines
1.1 KiB
TypeScript
Raw Normal View History

2018-04-11 15:20:23 +09:00
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
2018-05-24 15:44:13 +09:00
import { PrimeNGModules } from '@overflow/commons/prime-ng/prime-ng.module';
2018-05-18 17:49:13 +09:00
2018-04-11 15:20:23 +09:00
import { NoAuthProbeStoreModule } from './noauth-probe-store.module';
2018-05-10 19:54:47 +09:00
import { NoAuthProbeRPCModule } from './noauth-probe-rpc.module';
import { NoAuthProbeLoggerModule } from './noauth-probe-logger.module';
2018-04-11 15:20:23 +09:00
import { COMPONENTS } from './component';
2018-05-18 17:49:13 +09:00
import { CONTAINER_COMPONENTS } from './container';
2018-04-11 15:20:23 +09:00
import { SERVICES } from './service';
2018-05-30 14:24:19 +09:00
import { MessageModule } from '@overflow/commons/component/message/message.module';
import { BlockProgressbarModule } from '@overflow/commons/component/block-progressbar/block-progressbar.module';
2018-04-06 20:02:18 +09:00
2018-04-11 15:20:23 +09:00
@NgModule({
imports: [
CommonModule,
NoAuthProbeStoreModule,
2018-05-10 19:54:47 +09:00
NoAuthProbeRPCModule,
NoAuthProbeLoggerModule,
PrimeNGModules,
2018-05-30 14:24:19 +09:00
MessageModule,
BlockProgressbarModule,
2018-04-11 15:20:23 +09:00
],
declarations: [
COMPONENTS,
2018-05-18 17:49:13 +09:00
CONTAINER_COMPONENTS,
2018-04-11 15:20:23 +09:00
],
exports: [
COMPONENTS,
2018-05-18 17:49:13 +09:00
CONTAINER_COMPONENTS,
2018-04-11 15:20:23 +09:00
],
providers: [
SERVICES,
]
})
2018-05-24 16:26:43 +09:00
export class NoauthProbeModule { }