blob: 134300d8877ec760d0c2a3656beb530747c5b8eb (
plain) (
tree)
|
|
import { NgModule } from '@angular/core'
import { SharedMainModule } from '../shared-main'
import { SearchService } from './search.service'
@NgModule({
imports: [
SharedMainModule
],
declarations: [
],
exports: [
],
providers: [
SearchService
]
})
export class SharedSearchModule { }
|