Files
epess-web-backend/src/Realtime/realtime.schema.ts
2024-11-11 22:04:39 +07:00

11 lines
308 B
TypeScript

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()
}
}