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