]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - 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
a685e25c 1import { NgModule } from '@angular/core'
80958c78
C
2import { SharedModule } from '../../shared'
3import { VideoEditModule } from './shared/video-edit.module'
a685e25c
C
4import { VideoUpdateRoutingModule } from './video-update-routing.module'
5import { VideoUpdateComponent } from './video-update.component'
308c4275 6import { VideoUpdateResolver } from '@app/videos/+video-edit/video-update.resolver'
772d5642 7import { CanDeactivateGuard } from '@app/shared/guards/can-deactivate-guard.service'
a685e25c
C
8
9@NgModule({
10 imports: [
a685e25c 11 VideoUpdateRoutingModule,
2de96f4d 12 VideoEditModule,
a685e25c
C
13 SharedModule
14 ],
15
16 declarations: [
17 VideoUpdateComponent
18 ],
19
20 exports: [
21 VideoUpdateComponent
22 ],
23
308c4275 24 providers: [
772d5642
C
25 VideoUpdateResolver,
26 CanDeactivateGuard
308c4275 27 ]
a685e25c
C
28})
29export class VideoUpdateModule { }