| | |
| | | import { DevicesModule } from './devices/devices.module'; |
| | | import { _HttpClient } from '@delon/theme'; |
| | | import { NgModule } from '@angular/core'; |
| | | import { RouterModule } from '@angular/router'; |
| | | import { SharedModule } from '@shared/shared.module'; |
| | |
| | | import { DashboardAnalysisComponent } from './dashboard/analysis/analysis.component'; |
| | | import { DashboardMonitorComponent } from './dashboard/monitor/monitor.component'; |
| | | import { DashboardWorkplaceComponent } from './dashboard/workplace/workplace.component'; |
| | | import { CoreModule } from '@core/core.module'; |
| | | |
| | | @NgModule({ |
| | | imports: [ |
| | |
| | | DashboardV1Component, |
| | | DashboardAnalysisComponent, |
| | | DashboardMonitorComponent, |
| | | DashboardWorkplaceComponent, |
| | | DashboardWorkplaceComponent |
| | | ], |
| | | exports: [ |
| | | RouterModule |
| | | ], |
| | | providers: [ |
| | | _HttpClient |
| | | ] |
| | | }) |
| | | |