aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/video-watch.module.ts
blob: 5f20b171e6df34a9de58ea10c4739c20278c8eed (plain) (tree)

































                                                                      
import { NgModule } from '@angular/core'

import { VideoWatchRoutingModule } from './video-watch-routing.module'
import { VideoService } from '../shared'
import { SharedModule } from '../../shared'

import { VideoWatchComponent } from './video-watch.component'
import { VideoReportComponent } from './video-report.component'
import { VideoShareComponent } from './video-share.component'
import { VideoMagnetComponent } from './video-magnet.component'

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

  declarations: [
    VideoWatchComponent,

    VideoMagnetComponent,
    VideoShareComponent,
    VideoReportComponent
  ],

  exports: [
    VideoWatchComponent
  ],

  providers: [
    VideoService
  ]
})
export class VideoWatchModule { }