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