Merge from upstream
[oweals/peertube.git] / client / src / app / +video-channels / video-channels.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedModule } from '../shared'
3 import { VideoChannelsRoutingModule } from './video-channels-routing.module'
4 import { VideoChannelsComponent } from './video-channels.component'
5 import { VideoChannelVideosComponent } from './video-channel-videos/video-channel-videos.component'
6 import { VideoChannelAboutComponent } from './video-channel-about/video-channel-about.component'
7
8 @NgModule({
9   imports: [
10     VideoChannelsRoutingModule,
11     SharedModule
12   ],
13
14   declarations: [
15     VideoChannelsComponent,
16     VideoChannelVideosComponent,
17     VideoChannelAboutComponent
18   ],
19
20   exports: [
21     VideoChannelsComponent
22   ],
23
24   providers: []
25 })
26 export class VideoChannelsModule { }