]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/search/search.module.ts
change fixtures to reflect output size of jimp
[github/Chocobozzz/PeerTube.git] / client / src / app / search / search.module.ts
1 import { NgModule } from '@angular/core'
2 import { TagInputModule } from 'ngx-chips'
3 import { SharedModule } from '../shared'
4 import { SearchComponent } from '@app/search/search.component'
5 import { SearchService } from '@app/search/search.service'
6 import { SearchRoutingModule } from '@app/search/search-routing.module'
7 import { SearchFiltersComponent } from '@app/search/search-filters.component'
8
9 @NgModule({
10 imports: [
11 TagInputModule,
12
13 SearchRoutingModule,
14 SharedModule
15 ],
16
17 declarations: [
18 SearchComponent,
19 SearchFiltersComponent
20 ],
21
22 exports: [
23 TagInputModule,
24 SearchComponent
25 ],
26
27 providers: [
28 SearchService
29 ]
30 })
31 export class SearchModule { }