]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - 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
1
2 import { NgModule } from '@angular/core'
3 import { SharedMainModule } from '../shared-main/shared-main.module'
4 import { 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 })
19 export class SharedVideoCommentModule { }