aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-search/shared-search.module.ts
blob: be4ef5e3f1885a688f0d24174f91ed9f2ba9a334 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { NgModule } from '@angular/core'
import { SharedMainModule } from '../shared-main'
import { SharedVideoPlaylistModule } from '../shared-video-playlist'
import { SearchService } from './search.service'

@NgModule({
  imports: [
    SharedMainModule,
    SharedVideoPlaylistModule
  ],

  declarations: [
  ],

  exports: [
  ],

  providers: [
    SearchService
  ]
})
export class SharedSearchModule { }