aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+accounts/accounts.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+accounts/accounts.module.ts')
-rw-r--r--client/src/app/+accounts/accounts.module.ts28
1 files changed, 28 insertions, 0 deletions
diff --git a/client/src/app/+accounts/accounts.module.ts b/client/src/app/+accounts/accounts.module.ts
new file mode 100644
index 000000000..8e679822a
--- /dev/null
+++ b/client/src/app/+accounts/accounts.module.ts
@@ -0,0 +1,28 @@
1import { NgModule } from '@angular/core'
2import { SharedModule } from '../shared'
3import { AccountsRoutingModule } from './accounts-routing.module'
4import { AccountsComponent } from './accounts.component'
5import { AccountVideosComponent } from './account-videos/account-videos.component'
6import { AccountAboutComponent } from './account-about/account-about.component'
7import { AccountVideoChannelsComponent } from './account-video-channels/account-video-channels.component'
8
9@NgModule({
10 imports: [
11 AccountsRoutingModule,
12 SharedModule
13 ],
14
15 declarations: [
16 AccountsComponent,
17 AccountVideosComponent,
18 AccountVideoChannelsComponent,
19 AccountAboutComponent
20 ],
21
22 exports: [
23 AccountsComponent
24 ],
25
26 providers: []
27})
28export class AccountsModule { }