blob: 18319de1a7e241678e641f41cb29a1bb5a7cc365 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
import { NgModule } from '@angular/core'
import { VideoWatchRoutingModule } from './video-watch-routing.module'
import { MarkdownService } from '../shared'
import { SharedModule } from '../../shared'
import { ClipboardModule } from 'ngx-clipboard'
import { VideoWatchComponent } from './video-watch.component'
import { VideoReportComponent } from './video-report.component'
import { VideoShareComponent } from './video-share.component'
import { VideoDownloadComponent } from './video-download.component'
@NgModule({
imports: [
VideoWatchRoutingModule,
SharedModule,
ClipboardModule
],
declarations: [
VideoWatchComponent,
VideoDownloadComponent,
VideoShareComponent,
VideoReportComponent
],
exports: [
VideoWatchComponent
],
providers: [
MarkdownService
]
})
export class VideoWatchModule { }
|