]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-watch.module.ts
Send video comment comments to followers/origin
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-watch.module.ts
CommitLineData
a685e25c 1import { NgModule } from '@angular/core'
fb4fd623
C
2import { TooltipModule } from 'ngx-bootstrap/tooltip'
3import { ClipboardModule } from 'ngx-clipboard'
4import { SharedModule } from '../../shared'
5import { MarkdownService } from '../shared'
6import { VideoDownloadComponent } from './video-download.component'
7import { VideoReportComponent } from './video-report.component'
8import { VideoShareComponent } from './video-share.component'
a685e25c
C
9
10import { VideoWatchRoutingModule } from './video-watch-routing.module'
a685e25c
C
11
12import { VideoWatchComponent } from './video-watch.component'
a685e25c
C
13
14@NgModule({
15 imports: [
16 VideoWatchRoutingModule,
c7e1e432 17 SharedModule,
e9189001
C
18 ClipboardModule,
19 TooltipModule.forRoot()
a685e25c
C
20 ],
21
22 declarations: [
23 VideoWatchComponent,
24
a96aed15 25 VideoDownloadComponent,
a685e25c
C
26 VideoShareComponent,
27 VideoReportComponent
28 ],
29
30 exports: [
31 VideoWatchComponent
32 ],
33
34 providers: [
202f6b6c 35 MarkdownService
a685e25c
C
36 ]
37})
38export class VideoWatchModule { }