]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+account/account.module.ts
Update video-channel routes (again)
[github/Chocobozzz/PeerTube.git] / client / src / app / +account / account.module.ts
CommitLineData
0626e7af
C
1import { NgModule } from '@angular/core'
2import { SharedModule } from '../shared'
3import { AccountRoutingModule } from './account-routing.module'
4import { AccountComponent } from './account.component'
5import { AccountVideosComponent } from './account-videos/account-videos.component'
6import { AccountAboutComponent } from './account-about/account-about.component'
d3e91a5f 7import { AccountVideoChannelsComponent } from './account-video-channels/account-video-channels.component'
0626e7af
C
8
9@NgModule({
10 imports: [
11 AccountRoutingModule,
12 SharedModule
13 ],
14
15 declarations: [
16 AccountComponent,
17 AccountVideosComponent,
d3e91a5f 18 AccountVideoChannelsComponent,
0626e7af
C
19 AccountAboutComponent
20 ],
21
22 exports: [
23 AccountComponent
24 ],
25
26 providers: []
27})
28export class AccountModule { }