1
0
Fork 0
peertube/client/src/app/search/search.module.ts

36 lines
887 B
TypeScript
Raw Normal View History

import { TagInputModule } from 'ngx-chips'
2020-05-29 14:16:24 +00:00
import { NgModule } from '@angular/core'
import { SearchFiltersComponent } from '@app/search/search-filters.component'
import { SearchRoutingModule } from '@app/search/search-routing.module'
2018-07-19 14:17:54 +00:00
import { SearchComponent } from '@app/search/search.component'
import { SearchService } from '@app/search/search.service'
2020-05-29 14:16:24 +00:00
import { SharedModule } from '../shared'
import { ChannelLazyLoadResolver } from './channel-lazy-load.resolver'
import { VideoLazyLoadResolver } from './video-lazy-load.resolver'
2018-07-19 14:17:54 +00:00
@NgModule({
imports: [
TagInputModule,
2018-07-19 14:17:54 +00:00
SearchRoutingModule,
2019-06-12 10:40:24 +00:00
SharedModule
2018-07-19 14:17:54 +00:00
],
declarations: [
2018-07-20 16:31:49 +00:00
SearchComponent,
SearchFiltersComponent
2018-07-19 14:17:54 +00:00
],
exports: [
TagInputModule,
2018-07-19 14:17:54 +00:00
SearchComponent
],
providers: [
2020-05-29 14:16:24 +00:00
SearchService,
VideoLazyLoadResolver,
ChannelLazyLoadResolver
2018-07-19 14:17:54 +00:00
]
})
export class SearchModule { }