]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+video-channels/video-channels.module.ts
Add video channel view
[github/Chocobozzz/PeerTube.git] / client / src / app / +video-channels / video-channels.module.ts
CommitLineData
170726f5
C
1import { NgModule } from '@angular/core'
2import { SharedModule } from '../shared'
3import { VideoChannelsRoutingModule } from './video-channels-routing.module'
4import { VideoChannelsComponent } from './video-channels.component'
5import { VideoChannelVideosComponent } from './video-channel-videos/video-channel-videos.component'
6import { VideoChannelAboutComponent } from './video-channel-about/video-channel-about.component'
bce47964 7import { VideoChannelPlaylistsComponent } from '@app/+video-channels/video-channel-playlists/video-channel-playlists.component'
170726f5
C
8
9@NgModule({
10 imports: [
11 VideoChannelsRoutingModule,
12 SharedModule
13 ],
14
15 declarations: [
16 VideoChannelsComponent,
17 VideoChannelVideosComponent,
bce47964
C
18 VideoChannelAboutComponent,
19 VideoChannelPlaylistsComponent
170726f5
C
20 ],
21
22 exports: [
23 VideoChannelsComponent
24 ],
25
26 providers: []
27})
28export class VideoChannelsModule { }