2018-04-10 12:37:09 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { COMPONENTS } from './component';
|
|
|
|
import { SERVICES } from './service';
|
|
|
|
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 { SensorModule } from '@overflow/sensor/sensor.module';
|
2018-06-07 06:07:45 +00:00
|
|
|
import { ProbeModule } from '@overflow/probe/probe.module';
|
2018-05-29 11:58:50 +00:00
|
|
|
import { MetaModule } from '@overflow/meta/meta.module';
|
2018-05-30 10:00:46 +00:00
|
|
|
import { UIModule } from '@overflow/shared/ui/ui.module';
|
2018-06-07 06:07:45 +00:00
|
|
|
import { TabbarModule } from '@app/commons/component/layout/tabbar/app.tabbar.module';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-04-10 12:37:09 +00:00
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
|
|
|
FormsModule,
|
2018-05-30 10:00:46 +00:00
|
|
|
UIModule,
|
2018-04-11 12:54:05 +00:00
|
|
|
DiscoveryModule,
|
2018-04-26 11:23:57 +00:00
|
|
|
SensorModule,
|
2018-06-07 06:07:45 +00:00
|
|
|
ProbeModule,
|
2018-05-29 11:58:50 +00:00
|
|
|
MetaModule,
|
2018-06-07 06:07:45 +00:00
|
|
|
TabbarModule
|
2018-04-10 12:37:09 +00:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
COMPONENTS,
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
COMPONENTS,
|
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
SERVICES
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class InfraModule { }
|