chore: removed comments from pubsub module

This commit is contained in:
Balu Babu
2022-12-07 20:31:54 +05:30
parent d7afd31572
commit 757060b11f
2 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import { Module } from "@nestjs/common";
import { PubSubService } from "./pubsub.service";
@Module({
providers: [PubSubService],
exports: [PubSubService]
})
export class PubSubModule {}