]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/account/account.module.ts
Begin videos of an account
[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'
df98563e 8import { AccountService } from './account.service'
202f6b6c 9import { AccountVideosComponent } from './account-videos/account-videos.component'
693b1aba
C
10
11@NgModule({
12 imports: [
13 AccountRoutingModule,
14 SharedModule
15 ],
16
17 declarations: [
af5e743b 18 AccountComponent,
c30745f3 19 AccountSettingsComponent,
af5e743b 20 AccountChangePasswordComponent,
202f6b6c
C
21 AccountDetailsComponent,
22 AccountVideosComponent
693b1aba
C
23 ],
24
25 exports: [
26 AccountComponent
27 ],
28
e2a2d6c8 29 providers: []
693b1aba
C
30})
31export class AccountModule { }