diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-11-20 17:18:15 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-11-21 22:09:45 +0100 |
commit | 693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c (patch) | |
tree | d6004d282a55d995eecba78bae95173bd0f11767 /client/src/app/account/account.module.ts | |
parent | 2c8d4697db4b5a2d645b7bfcaf91093a64597958 (diff) | |
download | PeerTube-693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c.tar.gz PeerTube-693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c.tar.zst PeerTube-693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c.zip |
Client: split in angular modules
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 { } | ||