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