]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - 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
CommitLineData
1942f11d
C
1import { NgModule } from '@angular/core'
2import { SharedMainModule } from '../shared-main'
787409e6 3import { SharedVideoPlaylistModule } from '../shared-video-playlist'
1942f11d
C
4import { SearchService } from './search.service'
5
6@NgModule({
7 imports: [
787409e6
C
8 SharedMainModule,
9 SharedVideoPlaylistModule
1942f11d
C
10 ],
11
12 declarations: [
13 ],
14
15 exports: [
16 ],
17
18 providers: [
19 SearchService
20 ]
21})
22export class SharedSearchModule { }