aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/search/search.module.ts
blob: 0411fbe24a537a99ae794bf78a017a9718626a9d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11




                                                                       
                                                                             
                                                              



                        

                 
                     


                 

                          










                             
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'
import { NgbCollapseModule } from '@ng-bootstrap/ng-bootstrap'

@NgModule({
  imports: [
    SearchRoutingModule,
    SharedModule,

    NgbCollapseModule
  ],

  declarations: [
    SearchComponent,
    SearchFiltersComponent
  ],

  exports: [
    SearchComponent
  ],

  providers: [
    SearchService
  ]
})
export class SearchModule { }