]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared-search.module.ts
8b54924007021eb7f65e0b998cafa64dff18962a
[github/Chocobozzz/PeerTube.git] / shared-search.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedMainModule } from '../shared-main'
3 import { SharedVideoPlaylistModule } from '../shared-video-playlist'
4 import { FindInBulkService } from './find-in-bulk.service'
5 import { SearchService } from './search.service'
6
7 @NgModule({
8 imports: [
9 SharedMainModule,
10 SharedVideoPlaylistModule
11 ],
12
13 declarations: [
14 ],
15
16 exports: [
17 ],
18
19 providers: [
20 FindInBulkService,
21 SearchService
22 ]
23 })
24 export class SharedSearchModule { }