blob: 05236ff85905cb8ef4ec2ad0a991fd4aa143ce59 (
plain) (
tree)
|
|
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 { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription'
import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist'
import { VideoChannelAboutComponent } from './video-channel-about/video-channel-about.component'
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'
@NgModule({
imports: [
VideoChannelsRoutingModule,
SharedMainModule,
SharedFormModule,
SharedVideoPlaylistModule,
SharedVideoMiniatureModule,
SharedUserSubscriptionModule,
SharedGlobalIconModule
],
declarations: [
VideoChannelsComponent,
VideoChannelVideosComponent,
VideoChannelAboutComponent,
VideoChannelPlaylistsComponent
],
exports: [
VideoChannelsComponent
],
providers: []
})
export class VideoChannelsModule { }
|