aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+video-channels/video-channels.module.ts
blob: 6975d05b20a4b7847b479376f04d6b39224197d0 (plain) (tree)
1
2
3
4
5
6
7





                                                                                                   
                                                                                                                               









                                

                                  








                                    
import { NgModule } from '@angular/core'
import { SharedModule } from '../shared'
import { VideoChannelsRoutingModule } from './video-channels-routing.module'
import { VideoChannelsComponent } from './video-channels.component'
import { VideoChannelVideosComponent } from './video-channel-videos/video-channel-videos.component'
import { VideoChannelAboutComponent } from './video-channel-about/video-channel-about.component'
import { VideoChannelPlaylistsComponent } from '@app/+video-channels/video-channel-playlists/video-channel-playlists.component'

@NgModule({
  imports: [
    VideoChannelsRoutingModule,
    SharedModule
  ],

  declarations: [
    VideoChannelsComponent,
    VideoChannelVideosComponent,
    VideoChannelAboutComponent,
    VideoChannelPlaylistsComponent
  ],

  exports: [
    VideoChannelsComponent
  ],

  providers: []
})
export class VideoChannelsModule { }