]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+reset-password/reset-password.module.ts
Lazy load all routes
[github/Chocobozzz/PeerTube.git] / client / src / app / +reset-password / reset-password.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedFormModule } from '@app/shared/shared-forms'
3 import { SharedMainModule } from '@app/shared/shared-main'
4 import { ResetPasswordRoutingModule } from './reset-password-routing.module'
5 import { ResetPasswordComponent } from './reset-password.component'
6
7 @NgModule({
8 imports: [
9 ResetPasswordRoutingModule,
10
11 SharedMainModule,
12 SharedFormModule
13 ],
14
15 declarations: [
16 ResetPasswordComponent
17 ],
18
19 exports: [
20 ResetPasswordComponent
21 ],
22
23 providers: [
24 ]
25 })
26 export class ResetPasswordModule { }