member_webapp/@overflow/meta/crawler-input-item/crawler-input.module.ts

23 lines
453 B
TypeScript
Raw Normal View History

2018-05-02 08:09:39 +00:00
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
2018-04-06 11:02:18 +00:00
2018-05-02 08:09:39 +00:00
import { } from './crawler.module';
2018-04-06 11:02:18 +00:00
2018-05-02 08:09:39 +00:00
import { SERVICES } from './service';
import { MetaCrawlerInputItemStoreModule } from './crawler-input-store.module';
2018-04-06 11:02:18 +00:00
2018-05-02 08:09:39 +00:00
@NgModule({
imports: [
CommonModule,
MetaCrawlerInputItemStoreModule
],
declarations: [
],
exports: [
],
providers: [
SERVICES,
]
})
export class MetaCrawlerInputItemModule { }