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