1
0
Fork 0
peertube/client/src/app/+video-channels/video-channels.module.ts

29 lines
887 B
TypeScript
Raw Normal View History

2018-04-25 14:56:13 +00:00
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'
2019-03-14 13:05:36 +00:00
import { VideoChannelPlaylistsComponent } from '@app/+video-channels/video-channel-playlists/video-channel-playlists.component'
2018-04-25 14:56:13 +00:00
@NgModule({
imports: [
VideoChannelsRoutingModule,
SharedModule
],
declarations: [
VideoChannelsComponent,
VideoChannelVideosComponent,
2019-03-14 13:05:36 +00:00
VideoChannelAboutComponent,
VideoChannelPlaylistsComponent
2018-04-25 14:56:13 +00:00
],
exports: [
VideoChannelsComponent
],
providers: []
})
export class VideoChannelsModule { }