import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { ECLRouting } from './ecl.routing'; import { SharedModule } from '../shared/shared.module'; import { ECLRootComponent } from './ecl-root.component'; import { ECLHomeComponent } from './home/home.component'; import { ECLNodeInfoComponent } from './home/node-info/node-info.component'; import { ECLBalancesInfoComponent } from './home/balances-info/balances-info.component'; import { ECLFeeInfoComponent } from './home/fee-info/fee-info.component'; import { ECLChannelStatusInfoComponent } from './home/channel-status-info/channel-status-info.component'; import { ECLChannelCapacityInfoComponent } from './home/channel-capacity-info/channel-capacity-info.component'; import { ECLChannelLiquidityInfoComponent } from './home/channel-liquidity-info/channel-liquidity-info.component'; import { ECLOnChainComponent } from './on-chain/on-chain.component'; import { ECLOnChainReceiveComponent } from './on-chain/on-chain-receive/on-chain-receive.component'; import { ECLOnChainTransactionHistoryComponent } from './on-chain/on-chain-transaction-history/on-chain-transaction-history.component'; import { ECLConnectionsComponent } from './peers-channels/connections.component'; import { ECLPeersComponent } from './peers-channels/peers/peers.component'; import { ECLChannelsTablesComponent } from './peers-channels/channels/channels-tables/channels-tables.component'; import { ECLChannelOpenTableComponent } from './peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component'; import { ECLChannelPendingTableComponent } from './peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component'; import { ECLChannelInactiveTableComponent } from './peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component'; import { ECLTransactionsComponent } from './transactions/transactions.component'; import { ECLQueryRoutesComponent } from './graph/query-routes/query-routes.component'; import { ECLLightningPaymentsComponent } from './transactions/payments/lightning-payments.component'; import { ECLLightningInvoicesComponent } from './transactions/invoices/lightning-invoices.component'; import { ECLRoutingComponent } from './routing/routing.component'; import { ECLForwardingHistoryComponent } from './routing/forwarding-history/forwarding-history.component'; import { ECLRoutingPeersComponent } from './routing/routing-peers/routing-peers.component'; import { ECLLookupsComponent } from './graph/lookups/lookups.component'; import { ECLNodeLookupComponent } from './graph/lookups/node-lookup/node-lookup.component'; import { ECLGraphComponent } from './graph/graph.component'; import { ECLReportsComponent } from './reports/reports.component'; import { ECLRoutingReportComponent } from './reports/routing/routing-report.component'; import { ECLTransactionsReportComponent } from './reports/transactions/transactions-report.component'; import { ECLOnChainSendComponent } from './on-chain/on-chain-send/on-chain-send.component'; import { ECLInvoiceInformationComponent } from './transactions/invoice-information-modal/invoice-information.component'; import { ECLPaymentInformationComponent } from './transactions/payment-information-modal/payment-information.component'; import { ECLOpenChannelComponent } from './peers-channels/channels/open-channel-modal/open-channel.component'; import { ECLConnectPeerComponent } from './peers-channels/connect-peer/connect-peer.component'; import { ECLLightningSendPaymentsComponent } from './transactions/send-payment-modal/send-payment.component'; import { ECLCreateInvoiceComponent } from './transactions/create-invoice-modal/create-invoice.component'; import { ECLOnChainSendModalComponent } from './on-chain/on-chain-send-modal/on-chain-send-modal.component'; import { ECLChannelInformationComponent } from './peers-channels/channels/channel-information-modal/channel-information.component'; import { ECLUnlockedGuard } from '../shared/services/auth.guard'; @NgModule({ imports: [ CommonModule, SharedModule, ECLRouting ], declarations: [ ECLRootComponent, ECLHomeComponent, ECLNodeInfoComponent, ECLBalancesInfoComponent, ECLFeeInfoComponent, ECLChannelStatusInfoComponent, ECLChannelCapacityInfoComponent, ECLChannelLiquidityInfoComponent, ECLOnChainComponent, ECLOnChainReceiveComponent, ECLOnChainTransactionHistoryComponent, ECLPeersComponent, ECLConnectionsComponent, ECLChannelsTablesComponent, ECLChannelOpenTableComponent, ECLChannelPendingTableComponent, ECLChannelInactiveTableComponent, ECLRoutingComponent, ECLForwardingHistoryComponent, ECLRoutingPeersComponent, ECLTransactionsComponent, ECLQueryRoutesComponent, ECLLightningPaymentsComponent, ECLLightningInvoicesComponent, ECLLookupsComponent, ECLNodeLookupComponent, ECLGraphComponent, ECLReportsComponent, ECLRoutingReportComponent, ECLTransactionsReportComponent, ECLOnChainSendComponent, ECLInvoiceInformationComponent, ECLPaymentInformationComponent, ECLOpenChannelComponent, ECLConnectPeerComponent, ECLLightningSendPaymentsComponent, ECLCreateInvoiceComponent, ECLOnChainSendModalComponent, ECLChannelInformationComponent ], providers: [ ECLUnlockedGuard ], bootstrap: [ECLRootComponent] }) export class ECLModule { }