]>
Commit | Line | Data |
---|---|---|
57c36b27 | 1 | import { NgModule } from '@angular/core' |
25266908 | 2 | import { TagInputModule } from 'ngx-chips' |
57c36b27 C |
3 | import { SharedModule } from '../shared' |
4 | import { SearchComponent } from '@app/search/search.component' | |
5 | import { SearchService } from '@app/search/search.service' | |
6 | import { SearchRoutingModule } from '@app/search/search-routing.module' | |
0b18f4aa | 7 | import { SearchFiltersComponent } from '@app/search/search-filters.component' |
57c36b27 C |
8 | |
9 | @NgModule({ | |
10 | imports: [ | |
25266908 RK |
11 | TagInputModule, |
12 | ||
57c36b27 | 13 | SearchRoutingModule, |
2f4c784a | 14 | SharedModule |
57c36b27 C |
15 | ], |
16 | ||
17 | declarations: [ | |
0b18f4aa C |
18 | SearchComponent, |
19 | SearchFiltersComponent | |
57c36b27 C |
20 | ], |
21 | ||
22 | exports: [ | |
25266908 | 23 | TagInputModule, |
57c36b27 C |
24 | SearchComponent |
25 | ], | |
26 | ||
27 | providers: [ | |
28 | SearchService | |
29 | ] | |
30 | }) | |
31 | export class SearchModule { } |