diff options
Diffstat (limited to 'client/src/app/account/account.module.ts')
-rw-r--r-- | client/src/app/account/account.module.ts | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/client/src/app/account/account.module.ts b/client/src/app/account/account.module.ts new file mode 100644 index 000000000..53f6ba58e --- /dev/null +++ b/client/src/app/account/account.module.ts | |||
@@ -0,0 +1,26 @@ | |||
1 | import { NgModule } from '@angular/core'; | ||
2 | |||
3 | import { AccountRoutingModule } from './account-routing.module'; | ||
4 | import { AccountComponent } from './account.component'; | ||
5 | import { AccountService } from './account.service'; | ||
6 | import { SharedModule } from '../shared'; | ||
7 | |||
8 | @NgModule({ | ||
9 | imports: [ | ||
10 | AccountRoutingModule, | ||
11 | SharedModule | ||
12 | ], | ||
13 | |||
14 | declarations: [ | ||
15 | AccountComponent | ||
16 | ], | ||
17 | |||
18 | exports: [ | ||
19 | AccountComponent | ||
20 | ], | ||
21 | |||
22 | providers: [ | ||
23 | AccountService | ||
24 | ] | ||
25 | }) | ||
26 | export class AccountModule { } | ||