chore: imported existing user module files from old repo

This commit is contained in:
ankitsridhar16
2022-12-07 23:11:52 +05:30
parent ee002df110
commit a173d2c808
3 changed files with 71 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
import { Module } from '@nestjs/common';
import { UserResolver } from './user.resolver';
import { PubSubModule } from 'src/pubsub/pubsub.module';
@Module({
imports: [PubSubModule],
providers: [UserResolver],
exports: [],
})
export class UserModule {}