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