]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+stats/stats.module.ts
Use pvar() instead of SCSS variables
[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 { SharedFormModule } from '@app/shared/shared-forms'
4 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
5 import { SharedMainModule } from '@app/shared/shared-main'
6 import { SharedVideoLiveModule } from '@app/shared/shared-video-live'
7 import { StatsRoutingModule } from './stats-routing.module'
8 import { 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 })
31 export class StatsModule { }