blob: c6ec74d209bad22296cc34db05fb8be60962fcc2 (
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
|
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'
@NgModule({
imports: [
SearchRoutingModule,
SharedModule
],
declarations: [
SearchComponent
],
exports: [
SearchComponent
],
providers: [
SearchService
]
})
export class SearchModule { }
|