]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/+my-account-video-channels/my-account-video-channels.module.ts
Fix tokens loading
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / +my-account-video-channels / my-account-video-channels.module.ts
1 import { ChartModule } from 'primeng/chart'
2 import { NgModule } from '@angular/core'
3 import { SharedFormModule } from '@app/shared/shared-forms'
4 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
5 import { SharedMainModule } from '@app/shared/shared-main'
6 import { MyAccountVideoChannelCreateComponent } from './my-account-video-channel-create.component'
7 import { MyAccountVideoChannelUpdateComponent } from './my-account-video-channel-update.component'
8 import { MyAccountVideoChannelsRoutingModule } from './my-account-video-channels-routing.module'
9 import { MyAccountVideoChannelsComponent } from './my-account-video-channels.component'
10
11 @NgModule({
12 imports: [
13 MyAccountVideoChannelsRoutingModule,
14
15 ChartModule,
16
17 SharedMainModule,
18 SharedFormModule,
19 SharedGlobalIconModule
20 ],
21
22 declarations: [
23 MyAccountVideoChannelsComponent,
24 MyAccountVideoChannelCreateComponent,
25 MyAccountVideoChannelUpdateComponent
26 ],
27
28 exports: [],
29 providers: []
30 })
31 export class MyAccountVideoChannelsModule { }