blob: 35c39cc2ec12723637f1fc3924b2e0acbcedd8c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
import { NgModule } from '@angular/core'
import { SharedFormModule } from '@app/shared/shared-forms'
import { SharedGlobalIconModule } from '@app/shared/shared-icons'
import { SharedMainModule } from '@app/shared/shared-main'
import { SharedSupportModal } from '@app/shared/shared-support-modal'
import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription'
import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist'
import { VideoChannelPlaylistsComponent } from './video-channel-playlists/video-channel-playlists.component'
import { VideoChannelVideosComponent } from './video-channel-videos/video-channel-videos.component'
import { VideoChannelsRoutingModule } from './video-channels-routing.module'
import { VideoChannelsComponent } from './video-channels.component'
import { SharedActorImageModule } from '../shared/shared-actor-image/shared-actor-image.module'
@NgModule({
imports: [
VideoChannelsRoutingModule,
SharedMainModule,
SharedFormModule,
SharedVideoPlaylistModule,
SharedVideoMiniatureModule,
SharedUserSubscriptionModule,
SharedGlobalIconModule,
SharedSupportModal,
SharedActorImageModule
],
declarations: [
VideoChannelsComponent,
VideoChannelVideosComponent,
VideoChannelPlaylistsComponent
],
exports: [
VideoChannelsComponent
],
providers: []
})
export class VideoChannelsModule { }
|