blob: 41b329861c2e15ba407a67b1f699b2445e4ed79e (
plain) (
tree)
|
|
import { NgModule } from '@angular/core'
import { SharedMainModule } from '../shared-main/shared-main.module'
import { VideoCommentService } from './video-comment.service'
@NgModule({
imports: [
SharedMainModule
],
declarations: [ ],
exports: [ ],
providers: [
VideoCommentService
]
})
export class SharedVideoCommentModule { }
|