]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/account/account.module.ts
Fix lint
[github/Chocobozzz/PeerTube.git] / client / src / app / account / account.module.ts
CommitLineData
df98563e 1import { NgModule } from '@angular/core'
c30745f3 2import { SharedModule } from '../shared'
df98563e 3import { AccountRoutingModule } from './account-routing.module'
c30745f3
C
4import { AccountChangePasswordComponent } from './account-settings/account-change-password/account-change-password.component'
5import { AccountDetailsComponent } from './account-settings/account-details/account-details.component'
6import { AccountSettingsComponent } from './account-settings/account-settings.component'
df98563e 7import { AccountComponent } from './account.component'
202f6b6c 8import { AccountVideosComponent } from './account-videos/account-videos.component'
693b1aba
C
9
10@NgModule({
11 imports: [
12 AccountRoutingModule,
13 SharedModule
14 ],
15
16 declarations: [
af5e743b 17 AccountComponent,
c30745f3 18 AccountSettingsComponent,
af5e743b 19 AccountChangePasswordComponent,
202f6b6c
C
20 AccountDetailsComponent,
21 AccountVideosComponent
693b1aba
C
22 ],
23
24 exports: [
25 AccountComponent
26 ],
27
e2a2d6c8 28 providers: []
693b1aba
C
29})
30export class AccountModule { }