push code chua nhi?

This commit is contained in:
2024-11-11 22:04:39 +07:00
parent 22bc231409
commit ff45e69efd
7 changed files with 115 additions and 16 deletions

View File

@@ -0,0 +1,10 @@
import { Inject, Injectable } from '@nestjs/common'
import { PothosSchema } from '@smatch-corp/nestjs-pothos'
import { PrismaService } from 'src/Prisma/prisma.service'
@Injectable()
export class RealtimeSchema extends PothosSchema {
constructor(private readonly prisma: PrismaService) {
super()
}
}