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

32 lines
729 B
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-30 19:00:46 +09:00
import { UIModule } from '@overflow/shared/ui/ui.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
2018-04-11 15:20:23 +09:00
import { SERVICES } from './service';
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,
2018-05-30 19:00:46 +09:00
UIModule,
2018-04-11 15:20:23 +09:00
],
declarations: [
COMPONENTS,
],
exports: [
COMPONENTS,
],
providers: [
SERVICES,
]
})
2018-05-24 16:26:43 +09:00
export class NoauthProbeModule { }