aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-search/shared-search.module.ts
blob: 134300d8877ec760d0c2a3656beb530747c5b8eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 { }