aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+video-channels/video-channels.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+video-channels/video-channels.module.ts')
-rw-r--r--client/src/app/+video-channels/video-channels.module.ts26
1 files changed, 26 insertions, 0 deletions
diff --git a/client/src/app/+video-channels/video-channels.module.ts b/client/src/app/+video-channels/video-channels.module.ts
new file mode 100644
index 000000000..a09ea6f11
--- /dev/null
+++ b/client/src/app/+video-channels/video-channels.module.ts
@@ -0,0 +1,26 @@
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'
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})
26export class VideoChannelsModule { }