]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+stats/stats.module.ts
Support videos stats in client
[github/Chocobozzz/PeerTube.git] / client / src / app / +stats / stats.module.ts
1 import { ChartModule } from 'primeng/chart'
2 import { NgModule } from '@angular/core'
3 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
4 import { SharedMainModule } from '@app/shared/shared-main'
5 import { StatsRoutingModule } from './stats-routing.module'
6 import { VideoStatsComponent, VideoStatsService } from './video'
7
8 @NgModule({
9 imports: [
10 StatsRoutingModule,
11
12 SharedMainModule,
13 SharedGlobalIconModule,
14
15 ChartModule
16 ],
17
18 declarations: [
19 VideoStatsComponent
20 ],
21
22 exports: [],
23 providers: [
24 VideoStatsService
25 ]
26 })
27 export class StatsModule { }