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

25 lines
494 B
TypeScript
Raw Normal View History

2020-06-23 12:49:20 +00:00
import { NgModule } from '@angular/core'
import { SharedMainModule } from '../shared-main'
2021-07-02 06:49:54 +00:00
import { SharedVideoPlaylistModule } from '../shared-video-playlist'
2021-08-02 13:29:09 +00:00
import { FindInBulkService } from './find-in-bulk.service'
2020-06-23 12:49:20 +00:00
import { SearchService } from './search.service'
@NgModule({
imports: [
2021-07-02 06:49:54 +00:00
SharedMainModule,
SharedVideoPlaylistModule
2020-06-23 12:49:20 +00:00
],
declarations: [
],
exports: [
],
providers: [
2021-08-02 13:29:09 +00:00
FindInBulkService,
2020-06-23 12:49:20 +00:00
SearchService
]
})
export class SharedSearchModule { }