]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-search/shared-search.module.ts
Add reset button for file inputs in studio page
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-search / 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 { }