]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-library/+my-video-channels/my-video-channels.module.ts
Add ability to view my followers
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-library / +my-video-channels / my-video-channels.module.ts
1 import { ChartModule } from 'primeng/chart'
2 import { NgModule } from '@angular/core'
3 import { SharedActorImageEditModule } from '@app/shared/shared-actor-image-edit'
4 import { SharedFormModule } from '@app/shared/shared-forms'
5 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
6 import { SharedMainModule } from '@app/shared/shared-main'
7 import { MyVideoChannelCreateComponent } from './my-video-channel-create.component'
8 import { MyVideoChannelUpdateComponent } from './my-video-channel-update.component'
9 import { MyVideoChannelsRoutingModule } from './my-video-channels-routing.module'
10 import { MyVideoChannelsComponent } from './my-video-channels.component'
11 import { SharedActorImageModule } from '@app/shared/shared-actor-image/shared-actor-image.module'
12
13 @NgModule({
14 imports: [
15 MyVideoChannelsRoutingModule,
16
17 ChartModule,
18
19 SharedMainModule,
20 SharedFormModule,
21 SharedGlobalIconModule,
22 SharedActorImageEditModule,
23 SharedActorImageModule
24 ],
25
26 declarations: [
27 MyVideoChannelsComponent,
28 MyVideoChannelCreateComponent,
29 MyVideoChannelUpdateComponent
30 ],
31
32 exports: [],
33 providers: []
34 })
35 export class MyVideoChannelsModule { }