]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/video-update.module.ts
Move to sass @use
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-update.module.ts
CommitLineData
a685e25c 1import { NgModule } from '@angular/core'
67ed6552 2import { CanDeactivateGuard } from '@app/core'
80958c78 3import { VideoEditModule } from './shared/video-edit.module'
a685e25c
C
4import { VideoUpdateRoutingModule } from './video-update-routing.module'
5import { VideoUpdateComponent } from './video-update.component'
1942f11d 6import { VideoUpdateResolver } from './video-update.resolver'
a685e25c
C
7
8@NgModule({
9 imports: [
a685e25c 10 VideoUpdateRoutingModule,
67ed6552
C
11
12 VideoEditModule
a685e25c
C
13 ],
14
15 declarations: [
16 VideoUpdateComponent
17 ],
18
67ed6552 19 exports: [ ],
a685e25c 20
308c4275 21 providers: [
772d5642
C
22 VideoUpdateResolver,
23 CanDeactivateGuard
308c4275 24 ]
a685e25c
C
25})
26export class VideoUpdateModule { }