]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/account/account.module.ts
Client: try to be responsive
[github/Chocobozzz/PeerTube.git] / client / src / app / account / account.module.ts
... / ...
CommitLineData
1import { NgModule } from '@angular/core';
2
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';
9
10@NgModule({
11 imports: [
12 AccountRoutingModule,
13 SharedModule
14 ],
15
16 declarations: [
17 AccountComponent,
18 AccountChangePasswordComponent,
19 AccountDetailsComponent
20 ],
21
22 exports: [
23 AccountComponent
24 ],
25
26 providers: []
27})
28export class AccountModule { }