PeerTube/client/src/app/+accounts/accounts.module.ts

29 lines
778 B
TypeScript
Raw Normal View History

2018-04-24 08:10:54 -05:00
import { NgModule } from '@angular/core'
import { SharedModule } from '../shared'
2018-04-25 09:56:13 -05:00
import { AccountsRoutingModule } from './accounts-routing.module'
import { AccountsComponent } from './accounts.component'
2018-04-24 08:10:54 -05:00
import { AccountVideosComponent } from './account-videos/account-videos.component'
import { AccountAboutComponent } from './account-about/account-about.component'
2018-04-25 08:43:19 -05:00
import { AccountVideoChannelsComponent } from './account-video-channels/account-video-channels.component'
2018-04-24 08:10:54 -05:00
@NgModule({
imports: [
2018-04-25 09:56:13 -05:00
AccountsRoutingModule,
2018-04-24 08:10:54 -05:00
SharedModule
],
declarations: [
2018-04-25 09:56:13 -05:00
AccountsComponent,
2018-04-24 08:10:54 -05:00
AccountVideosComponent,
2018-04-25 08:43:19 -05:00
AccountVideoChannelsComponent,
2018-04-24 08:10:54 -05:00
AccountAboutComponent
],
exports: [
2018-04-25 09:56:13 -05:00
AccountsComponent
2018-04-24 08:10:54 -05:00
],
providers: []
})
2018-04-25 09:56:13 -05:00
export class AccountsModule { }