23 lines
462 B
TypeScript
23 lines
462 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
|
||
|
import { } from './crawler.module';
|
||
|
|
||
|
import { SERVICES } from './service';
|
||
|
import { MetaSensorDisplayItemStoreModule } from './sensor-display-item-store.module';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
MetaSensorDisplayItemStoreModule
|
||
|
],
|
||
|
declarations: [
|
||
|
],
|
||
|
exports: [
|
||
|
],
|
||
|
providers: [
|
||
|
SERVICES,
|
||
|
]
|
||
|
})
|
||
|
export class MetaSensorDisplayItemModule { }
|