PeerTube/client/src/app/shared/shared-search/shared-search.module.ts

21 lines
312 B
TypeScript
Raw Normal View History

2020-06-23 14:49:20 +02:00
import { NgModule } from '@angular/core'
import { SharedMainModule } from '../shared-main'
import { SearchService } from './search.service'
@NgModule({
imports: [
SharedMainModule
],
declarations: [
],
exports: [
],
providers: [
SearchService
]
})
export class SharedSearchModule { }