aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared-video-live/shared-video-live.module.ts
blob: f5e153ac97a4e881e3eecfebbcd535732d2adb5a (plain) (tree)
1
2
3
4
5
6




                                                                    
                                                                                    










                                                                                    

                                   


            

                                   






                                      
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 { }