aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-video-playlist/shared-video-playlist.module.ts
blob: 0566b1592c4cd24fbf7414d7a84b43c08aaca380 (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
32
33
34
35
36
import { NgModule } from '@angular/core'
import { SharedFormModule } from '../shared-forms'
import { SharedGlobalIconModule } from '../shared-icons'
import { SharedMainModule } from '../shared-main/shared-main.module'
import { SharedThumbnailModule } from '../shared-thumbnail'
import { VideoAddToPlaylistComponent } from './video-add-to-playlist.component'
import { VideoPlaylistElementMiniatureComponent } from './video-playlist-element-miniature.component'
import { VideoPlaylistMiniatureComponent } from './video-playlist-miniature.component'
import { VideoPlaylistService } from './video-playlist.service'

@NgModule({
  imports: [
    SharedMainModule,
    SharedFormModule,
    SharedThumbnailModule,
    SharedGlobalIconModule
  ],

  declarations: [
    VideoAddToPlaylistComponent,
    VideoPlaylistElementMiniatureComponent,
    VideoPlaylistMiniatureComponent
  ],

  exports: [
    VideoAddToPlaylistComponent,
    VideoPlaylistElementMiniatureComponent,
    VideoPlaylistMiniatureComponent
  ],

  providers: [
    VideoPlaylistService
  ]
})
export class SharedVideoPlaylistModule { }