diff options
Diffstat (limited to 'client/src/app/account/account.module.ts')
-rw-r--r-- | client/src/app/account/account.module.ts | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/client/src/app/account/account.module.ts b/client/src/app/account/account.module.ts deleted file mode 100644 index 2299c1919..000000000 --- a/client/src/app/account/account.module.ts +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
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 { AccountVideosComponent } from './account-videos/account-videos.component' | ||
9 | |||
10 | @NgModule({ | ||
11 | imports: [ | ||
12 | AccountRoutingModule, | ||
13 | SharedModule | ||
14 | ], | ||
15 | |||
16 | declarations: [ | ||
17 | AccountComponent, | ||
18 | AccountSettingsComponent, | ||
19 | AccountChangePasswordComponent, | ||
20 | AccountDetailsComponent, | ||
21 | AccountVideosComponent | ||
22 | ], | ||
23 | |||
24 | exports: [ | ||
25 | AccountComponent | ||
26 | ], | ||
27 | |||
28 | providers: [] | ||
29 | }) | ||
30 | export class AccountModule { } | ||