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