aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+search/search.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+search/search.module.ts')
-rw-r--r--client/src/app/+search/search.module.ts44
1 files changed, 44 insertions, 0 deletions
diff --git a/client/src/app/+search/search.module.ts b/client/src/app/+search/search.module.ts
new file mode 100644
index 000000000..ee4f07ad1
--- /dev/null
+++ b/client/src/app/+search/search.module.ts
@@ -0,0 +1,44 @@
1import { TagInputModule } from 'ngx-chips'
2import { NgModule } from '@angular/core'
3import { SharedFormModule } from '@app/shared/shared-forms'
4import { SharedMainModule } from '@app/shared/shared-main'
5import { SharedSearchModule } from '@app/shared/shared-search'
6import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription'
7import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
8import { SearchService } from '../shared/shared-search/search.service'
9import { ChannelLazyLoadResolver } from './channel-lazy-load.resolver'
10import { SearchFiltersComponent } from './search-filters.component'
11import { SearchRoutingModule } from './search-routing.module'
12import { SearchComponent } from './search.component'
13import { VideoLazyLoadResolver } from './video-lazy-load.resolver'
14
15@NgModule({
16 imports: [
17 TagInputModule,
18
19 SearchRoutingModule,
20
21 SharedMainModule,
22 SharedSearchModule,
23 SharedFormModule,
24 SharedUserSubscriptionModule,
25 SharedVideoMiniatureModule
26 ],
27
28 declarations: [
29 SearchComponent,
30 SearchFiltersComponent
31 ],
32
33 exports: [
34 TagInputModule,
35 SearchComponent
36 ],
37
38 providers: [
39 SearchService,
40 VideoLazyLoadResolver,
41 ChannelLazyLoadResolver
42 ]
43})
44export class SearchModule { }