blob: ecc351b654c4b3b5abeb22e58efdba3e6dc12ec7 (
plain) (
tree)
|
|
import { NgModule } from '@angular/core'
import { VideosRoutingModule } from './videos-routing.module'
import { VideosComponent } from './videos.component'
import {
LoaderComponent,
VideoListComponent,
MyVideosComponent,
VideoMiniatureComponent,
VideoSortComponent
} from './video-list'
import { VideoService } from './shared'
import { SharedModule } from '../shared'
@NgModule({
imports: [
VideosRoutingModule,
SharedModule
],
declarations: [
VideosComponent,
VideoListComponent,
MyVideosComponent,
VideoMiniatureComponent,
VideoSortComponent,
LoaderComponent
],
exports: [
VideosComponent
],
providers: [
VideoService
]
})
export class VideosModule { }
|