blob: e813782208a9feee81134c3d53085295ff04fcf0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
import { ChartModule } from 'primeng/chart'
import { NgModule } from '@angular/core'
import { SharedFormModule } from '@app/shared/shared-forms'
import { SharedGlobalIconModule } from '@app/shared/shared-icons'
import { SharedMainModule } from '@app/shared/shared-main'
import { SharedVideoLiveModule } from '@app/shared/shared-video-live'
import { StatsRoutingModule } from './stats-routing.module'
import { VideoStatsComponent, VideoStatsService } from './video'
@NgModule({
imports: [
StatsRoutingModule,
SharedMainModule,
SharedFormModule,
SharedGlobalIconModule,
SharedVideoLiveModule,
ChartModule
],
declarations: [
VideoStatsComponent
],
exports: [],
providers: [
VideoStatsService
]
})
export class StatsModule { }
|