]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/video-watch.module.ts
d0ed29d063ffe18ead6615d65e9ea0495824e210
[github/Chocobozzz/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 import { TooltipModule } from 'ngx-bootstrap/tooltip';
8
9 import { VideoWatchComponent } from './video-watch.component'
10 import { VideoReportComponent } from './video-report.component'
11 import { VideoShareComponent } from './video-share.component'
12 import { VideoDownloadComponent } from './video-download.component'
13
14 @NgModule({
15 imports: [
16 VideoWatchRoutingModule,
17 SharedModule,
18 ClipboardModule,
19 TooltipModule.forRoot()
20 ],
21
22 declarations: [
23 VideoWatchComponent,
24
25 VideoDownloadComponent,
26 VideoShareComponent,
27 VideoReportComponent
28 ],
29
30 exports: [
31 VideoWatchComponent
32 ],
33
34 providers: [
35 MarkdownService
36 ]
37 })
38 export class VideoWatchModule { }