23 lines
453 B
TypeScript
Raw Normal View History

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