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


                                                                             

                                                              


                                                                      


            

                   
                        
                


                 

                          


            
                   



                   


                           


                             
import { TagInputModule } from 'ngx-chips'
import { NgModule } from '@angular/core'
import { SearchFiltersComponent } from '@app/search/search-filters.component'
import { SearchRoutingModule } from '@app/search/search-routing.module'
import { SearchComponent } from '@app/search/search.component'
import { SearchService } from '@app/search/search.service'
import { SharedModule } from '../shared'
import { ChannelLazyLoadResolver } from './channel-lazy-load.resolver'
import { VideoLazyLoadResolver } from './video-lazy-load.resolver'

@NgModule({
  imports: [
    TagInputModule,

    SearchRoutingModule,
    SharedModule
  ],

  declarations: [
    SearchComponent,
    SearchFiltersComponent
  ],

  exports: [
    TagInputModule,
    SearchComponent
  ],

  providers: [
    SearchService,
    VideoLazyLoadResolver,
    ChannelLazyLoadResolver
  ]
})
export class SearchModule { }