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