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