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

36 lines
933 B
TypeScript
Raw Normal View History

2018-04-06 13:02:46 +00:00
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
2018-04-06 11:02:18 +00:00
2018-05-18 08:30:20 +00:00
import { COMPONENTS, CONTAINERS } from './component';
2018-04-06 13:02:46 +00:00
import { ProbeStoreModule } from './probe-store.module';
import { SERVICES } from './service';
2018-04-09 11:03:15 +00:00
import { PrimeNGModules } from '../commons/prime-ng/prime-ng.module';
2018-04-11 06:20:23 +00:00
import { FormsModule } from '@angular/forms';
2018-05-24 06:44:13 +00:00
import { DiscoveryModule } from '@overflow/discovery/discovery.module';
2018-05-24 07:56:53 +00:00
import { MetaCrawlerModule } from '@overflow/meta/crawler/crawler.module';
import { KeyValueModule } from '@overflow/commons/component/key-value/key-value.module';
2018-04-06 11:02:18 +00:00
2018-04-06 13:02:46 +00:00
@NgModule({
imports: [
CommonModule,
2018-04-09 11:03:15 +00:00
PrimeNGModules,
2018-04-06 13:02:46 +00:00
ProbeStoreModule,
2018-04-18 11:39:02 +00:00
FormsModule,
2018-04-19 06:37:10 +00:00
DiscoveryModule,
2018-05-24 07:56:53 +00:00
KeyValueModule,
2018-05-03 13:27:11 +00:00
MetaCrawlerModule
2018-04-06 13:02:46 +00:00
],
declarations: [
2018-05-18 08:30:20 +00:00
CONTAINERS,
2018-04-06 13:02:46 +00:00
COMPONENTS,
],
exports: [
2018-05-18 08:30:20 +00:00
CONTAINERS,
2018-04-06 13:02:46 +00:00
COMPONENTS,
],
providers: [
SERVICES,
]
})
export class ProbeModule { }