blob: f5e153ac97a4e881e3eecfebbcd535732d2adb5a (
plain) (
tree)
|
|
import { NgModule } from '@angular/core'
import { SharedFormModule } from '../shared-forms'
import { SharedGlobalIconModule } from '../shared-icons'
import { SharedMainModule } from '../shared-main/shared-main.module'
import { LiveDocumentationLinkComponent } from './live-documentation-link.component'
import { LiveStreamInformationComponent } from './live-stream-information.component'
import { LiveVideoService } from './live-video.service'
@NgModule({
imports: [
SharedMainModule,
SharedFormModule,
SharedGlobalIconModule
],
declarations: [
LiveStreamInformationComponent,
LiveDocumentationLinkComponent
],
exports: [
LiveStreamInformationComponent,
LiveDocumentationLinkComponent
],
providers: [
LiveVideoService
]
})
export class SharedVideoLiveModule { }
|