blob: 8b791621e09f4984d20664bf44fac55e477388aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import { NgModule } from '@angular/core'
import { SharedModule } from '../shared'
import { SearchComponent } from '@app/search/search.component'
import { SearchService } from '@app/search/search.service'
import { SearchRoutingModule } from '@app/search/search-routing.module'
import { SearchFiltersComponent } from '@app/search/search-filters.component'
@NgModule({
imports: [
SearchRoutingModule,
SharedModule
],
declarations: [
SearchComponent,
SearchFiltersComponent
],
exports: [
SearchComponent
],
providers: [
SearchService
]
})
export class SearchModule { }
|