]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+accounts/accounts.module.ts
Fix markdown links truncating
[github/Chocobozzz/PeerTube.git] / client / src / app / +accounts / accounts.module.ts
CommitLineData
0626e7af
C
1import { NgModule } from '@angular/core'
2import { SharedModule } from '../shared'
170726f5
C
3import { AccountsRoutingModule } from './accounts-routing.module'
4import { AccountsComponent } from './accounts.component'
0626e7af
C
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: [
170726f5 11 AccountsRoutingModule,
0626e7af
C
12 SharedModule
13 ],
14
15 declarations: [
170726f5 16 AccountsComponent,
0626e7af 17 AccountVideosComponent,
d3e91a5f 18 AccountVideoChannelsComponent,
0626e7af
C
19 AccountAboutComponent
20 ],
21
22 exports: [
170726f5 23 AccountsComponent
0626e7af
C
24 ],
25
26 providers: []
27})
170726f5 28export class AccountsModule { }