]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-video-comment/shared-video-comment.module.ts
Refactor parseQueryStringFilter boolean handler
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-video-comment / shared-video-comment.module.ts
CommitLineData
cfde28ba
C
1
2import { NgModule } from '@angular/core'
3import { SharedMainModule } from '../shared-main/shared-main.module'
4import { VideoCommentService } from './video-comment.service'
5
6@NgModule({
7 imports: [
8 SharedMainModule
9 ],
10
11 declarations: [ ],
12
13 exports: [ ],
14
15 providers: [
16 VideoCommentService
17 ]
18})
19export class SharedVideoCommentModule { }