2022-08-11 17:19:12 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { SharedModule } from '../shared/shared.module';
|
|
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { GraphsModule } from '../graphs/graphs.module';
|
|
|
|
import { LightningModule } from './lightning.module';
|
|
|
|
import { LightningApiService } from './lightning-api.service';
|
|
|
|
import { NodePreviewComponent } from './node/node-preview.component';
|
|
|
|
import { LightningPreviewsRoutingModule } from './lightning-previews.routing.module';
|
2022-08-11 17:20:20 +00:00
|
|
|
import { ChannelPreviewComponent } from './channel/channel-preview.component';
|
2022-08-11 17:19:12 +00:00
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
NodePreviewComponent,
|
2022-08-11 17:20:20 +00:00
|
|
|
ChannelPreviewComponent,
|
2022-08-11 17:19:12 +00:00
|
|
|
],
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
|
|
|
SharedModule,
|
|
|
|
RouterModule,
|
|
|
|
GraphsModule,
|
|
|
|
LightningPreviewsRoutingModule,
|
|
|
|
LightningModule,
|
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
LightningApiService,
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class LightningPreviewsModule { }
|