]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/reset-password/reset-password.module.ts
Import magnets with webtorrent
[github/Chocobozzz/PeerTube.git] / client / src / app / reset-password / reset-password.module.ts
CommitLineData
ecb4e35f
C
1import { NgModule } from '@angular/core'
2
3import { ResetPasswordRoutingModule } from './reset-password-routing.module'
4import { ResetPasswordComponent } from './reset-password.component'
5import { SharedModule } from '../shared'
6
7@NgModule({
8 imports: [
9 ResetPasswordRoutingModule,
10 SharedModule
11 ],
12
13 declarations: [
14 ResetPasswordComponent
15 ],
16
17 exports: [
18 ResetPasswordComponent
19 ],
20
21 providers: [
22 ]
23})
24export class ResetPasswordModule { }