2022-04-27 02:52:23 +04:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { SharedModule } from '../shared/shared.module';
|
|
|
|
import { LightningDashboardComponent } from './lightning-dashboard/lightning-dashboard.component';
|
|
|
|
import { LightningApiService } from './lightning-api.service';
|
|
|
|
import { NodesListComponent } from './nodes-list/nodes-list.component';
|
|
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { NodeStatisticsComponent } from './node-statistics/node-statistics.component';
|
2022-04-29 03:57:27 +04:00
|
|
|
import { NodeComponent } from './node/node.component';
|
|
|
|
import { LightningRoutingModule } from './lightning.routing.module';
|
2022-05-01 03:01:27 +04:00
|
|
|
import { ChannelsListComponent } from './channels-list/channels-list.component';
|
|
|
|
import { ChannelComponent } from './channel/channel.component';
|
2022-05-06 16:31:25 +04:00
|
|
|
import { LightningWrapperComponent } from './lightning-wrapper/lightning-wrapper.component';
|
2022-05-15 19:22:14 +04:00
|
|
|
import { ChannelBoxComponent } from './channel/channel-box/channel-box.component';
|
2022-06-29 23:06:13 +02:00
|
|
|
import { ClosingTypeComponent } from './channel/closing-type/closing-type.component';
|
2022-07-01 16:50:53 +02:00
|
|
|
import { LightningStatisticsChartComponent } from './statistics-chart/lightning-statistics-chart.component';
|
2022-07-02 16:46:57 +02:00
|
|
|
import { NodeStatisticsChartComponent } from './node-statistics-chart/node-statistics-chart.component';
|
2022-07-08 18:54:44 +02:00
|
|
|
import { GraphsModule } from '../graphs/graphs.module';
|
2022-07-06 13:20:37 +02:00
|
|
|
import { NodesNetworksChartComponent } from './nodes-networks-chart/nodes-networks-chart.component';
|
2022-07-06 14:56:10 +02:00
|
|
|
import { ChannelsStatisticsComponent } from './channels-statistics/channels-statistics.component';
|
2022-07-17 11:46:36 +02:00
|
|
|
import { NodesPerISPChartComponent } from './nodes-per-isp-chart/nodes-per-isp-chart.component';
|
2022-07-16 15:56:36 +02:00
|
|
|
import { NodesPerCountry } from './nodes-per-country/nodes-per-country.component';
|
2022-07-17 22:57:29 +02:00
|
|
|
import { NodesPerISP } from './nodes-per-isp/nodes-per-isp.component';
|
2022-07-17 11:10:17 +02:00
|
|
|
import { NodesPerCountryChartComponent } from '../lightning/nodes-per-country-chart/nodes-per-country-chart.component';
|
2022-07-20 11:39:51 +02:00
|
|
|
import { NodesMap } from '../lightning/nodes-map/nodes-map.component';
|
2022-04-27 02:52:23 +04:00
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
LightningDashboardComponent,
|
|
|
|
NodesListComponent,
|
|
|
|
NodeStatisticsComponent,
|
2022-07-02 16:46:57 +02:00
|
|
|
NodeStatisticsChartComponent,
|
2022-04-29 03:57:27 +04:00
|
|
|
NodeComponent,
|
2022-05-01 03:01:27 +04:00
|
|
|
ChannelsListComponent,
|
|
|
|
ChannelComponent,
|
2022-05-06 16:31:25 +04:00
|
|
|
LightningWrapperComponent,
|
2022-05-15 19:22:14 +04:00
|
|
|
ChannelBoxComponent,
|
2022-06-29 23:06:13 +02:00
|
|
|
ClosingTypeComponent,
|
2022-07-01 16:50:53 +02:00
|
|
|
LightningStatisticsChartComponent,
|
2022-07-06 13:20:37 +02:00
|
|
|
NodesNetworksChartComponent,
|
2022-07-06 14:56:10 +02:00
|
|
|
ChannelsStatisticsComponent,
|
2022-07-17 11:46:36 +02:00
|
|
|
NodesPerISPChartComponent,
|
2022-07-16 15:56:36 +02:00
|
|
|
NodesPerCountry,
|
2022-07-17 22:57:29 +02:00
|
|
|
NodesPerISP,
|
2022-07-17 11:10:17 +02:00
|
|
|
NodesPerCountryChartComponent,
|
2022-07-20 11:39:51 +02:00
|
|
|
NodesMap,
|
2022-04-27 02:52:23 +04:00
|
|
|
],
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
|
|
|
SharedModule,
|
|
|
|
RouterModule,
|
2022-04-29 03:57:27 +04:00
|
|
|
LightningRoutingModule,
|
2022-07-08 18:54:44 +02:00
|
|
|
GraphsModule,
|
2022-04-27 02:52:23 +04:00
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
LightningApiService,
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class LightningModule { }
|