aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-search/shared-search.module.ts
blob: 8b54924007021eb7f65e0b998cafa64dff18962a (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
import { NgModule } from '@angular/core'
import { SharedMainModule } from '../shared-main'
import { SharedVideoPlaylistModule } from '../shared-video-playlist'
import { FindInBulkService } from './find-in-bulk.service'
import { SearchService } from './search.service'

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

  declarations: [
  ],

  exports: [
  ],

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