2020-06-21 20:38:43 +03:00
|
|
|
///
|
2021-01-17 01:47:49 +02:00
|
|
|
/// Copyright © 2016-2021 The Thingsboard Authors
|
2020-06-21 20:38:43 +03:00
|
|
|
///
|
|
|
|
|
/// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
/// you may not use this file except in compliance with the License.
|
|
|
|
|
/// You may obtain a copy of the License at
|
|
|
|
|
///
|
|
|
|
|
/// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
///
|
|
|
|
|
/// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
/// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
/// See the License for the specific language governing permissions and
|
|
|
|
|
/// limitations under the License.
|
|
|
|
|
///
|
|
|
|
|
|
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { SharedModule } from '@shared/shared.module';
|
2021-01-12 22:01:32 +02:00
|
|
|
import { HomeDialogsModule } from '@home/dialogs/home-dialogs.module';
|
|
|
|
|
import { HomeComponentsModule } from '@home/components/home-components.module';
|
|
|
|
|
import { EdgeRoutingModule } from '@home/pages/edge/edge-routing.module';
|
2020-06-21 20:38:43 +03:00
|
|
|
import { EdgeComponent } from '@modules/home/pages/edge/edge.component';
|
2021-01-12 22:01:32 +02:00
|
|
|
import { EdgeTableHeaderComponent } from '@home/pages/edge/edge-table-header.component';
|
|
|
|
|
import { EdgeTabsComponent } from '@home/pages/edge/edge-tabs.component';
|
2020-06-21 20:38:43 +03:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
declarations: [
|
|
|
|
|
EdgeComponent,
|
|
|
|
|
EdgeTableHeaderComponent,
|
|
|
|
|
EdgeTabsComponent
|
|
|
|
|
],
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
SharedModule,
|
|
|
|
|
HomeDialogsModule,
|
|
|
|
|
HomeComponentsModule,
|
|
|
|
|
EdgeRoutingModule
|
|
|
|
|
]
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
export class EdgeModule { }
|