]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-search/shared-search.module.ts
Fix comment in PR template
[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 { SearchService } from './search.service'
5
6 @NgModule({
7 imports: [
8 SharedMainModule,
9 SharedVideoPlaylistModule
10 ],
11
12 declarations: [
13 ],
14
15 exports: [
16 ],
17
18 providers: [
19 SearchService
20 ]
21 })
22 export class SharedSearchModule { }