]>
Commit | Line | Data |
---|---|---|
170726f5 C |
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' | |
bce47964 | 7 | import { 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 | }) | |
28 | export class VideoChannelsModule { } |