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

32 lines
693 B
TypeScript
Raw Normal View History

2018-07-19 14:17:54 +00:00
import { NgModule } from '@angular/core'
import { TagInputModule } from 'ngx-chips'
2018-07-19 14:17:54 +00:00
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'
2018-07-20 16:31:49 +00:00
import { SearchFiltersComponent } from '@app/search/search-filters.component'
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: [
SearchService
]
})
export class SearchModule { }