Better admin tables
[oweals/peertube.git] / client / src / app / videos / +video-watch / video-watch.module.ts
1 import { NgModule } from '@angular/core'
2 import { TooltipModule } from 'ngx-bootstrap/tooltip'
3 import { ClipboardModule } from 'ngx-clipboard'
4 import { SharedModule } from '../../shared'
5 import { MarkdownService } from '../shared'
6 import { VideoDownloadComponent } from './video-download.component'
7 import { VideoReportComponent } from './video-report.component'
8 import { VideoShareComponent } from './video-share.component'
9
10 import { VideoWatchRoutingModule } from './video-watch-routing.module'
11
12 import { VideoWatchComponent } from './video-watch.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 { }