]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/videos/+video-edit/video-update.module.ts
Import magnets with webtorrent
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-update.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core'
2import { SharedModule } from '../../shared'
3import { VideoEditModule } from './shared/video-edit.module'
4import { VideoUpdateRoutingModule } from './video-update-routing.module'
5import { VideoUpdateComponent } from './video-update.component'
6import { VideoUpdateResolver } from '@app/videos/+video-edit/video-update.resolver'
7import { CanDeactivateGuard } from '@app/shared/guards/can-deactivate-guard.service'
8
9@NgModule({
10 imports: [
11 VideoUpdateRoutingModule,
12 VideoEditModule,
13 SharedModule
14 ],
15
16 declarations: [
17 VideoUpdateComponent
18 ],
19
20 exports: [
21 VideoUpdateComponent
22 ],
23
24 providers: [
25 VideoUpdateResolver,
26 CanDeactivateGuard
27 ]
28})
29export class VideoUpdateModule { }