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

28 lines
595 B
TypeScript
Raw Normal View History

2022-04-05 14:03:52 +02:00
import { ChartModule } from 'primeng/chart'
import { NgModule } from '@angular/core'
import { SharedGlobalIconModule } from '@app/shared/shared-icons'
import { SharedMainModule } from '@app/shared/shared-main'
import { StatsRoutingModule } from './stats-routing.module'
import { VideoStatsComponent, VideoStatsService } from './video'
@NgModule({
imports: [
StatsRoutingModule,
SharedMainModule,
SharedGlobalIconModule,
ChartModule
],
declarations: [
VideoStatsComponent
],
exports: [],
providers: [
VideoStatsService
]
})
export class StatsModule { }