member_webapp/@overflow/noauth-probe/noauth-probe.module.ts
2018-05-30 14:24:19 +09:00

38 lines
1.1 KiB
TypeScript

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { PrimeNGModules } from '@overflow/commons/prime-ng/prime-ng.module';
import { NoAuthProbeStoreModule } from './noauth-probe-store.module';
import { NoAuthProbeRPCModule } from './noauth-probe-rpc.module';
import { NoAuthProbeLoggerModule } from './noauth-probe-logger.module';
import { COMPONENTS } from './component';
import { CONTAINER_COMPONENTS } from './container';
import { SERVICES } from './service';
import { MessageModule } from '@overflow/commons/component/message/message.module';
import { BlockProgressbarModule } from '@overflow/commons/component/block-progressbar/block-progressbar.module';
@NgModule({
imports: [
CommonModule,
NoAuthProbeStoreModule,
NoAuthProbeRPCModule,
NoAuthProbeLoggerModule,
PrimeNGModules,
MessageModule,
BlockProgressbarModule,
],
declarations: [
COMPONENTS,
CONTAINER_COMPONENTS,
],
exports: [
COMPONENTS,
CONTAINER_COMPONENTS,
],
providers: [
SERVICES,
]
})
export class NoauthProbeModule { }