chore: remove Realtime module and related files

- Deleted RealtimeModule, RealtimeService, and RealtimeSchema to streamline the codebase and remove unused functionality.
- This cleanup helps improve maintainability and reduces complexity in the project.
This commit is contained in:
2024-12-03 19:18:30 +07:00
parent b0317b0660
commit 029f21645b
3 changed files with 0 additions and 25 deletions

View File

@@ -1,8 +0,0 @@
import { Module } from '@nestjs/common'
import { RealtimeService } from './realtime.service'
@Module({
providers: [RealtimeService],
exports: [RealtimeService],
})
export class RealtimeModule {}

View File

@@ -1,10 +0,0 @@
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()
}
}

View File

@@ -1,7 +0,0 @@
import { Injectable } from '@nestjs/common'
// import Quil, { Delta } from 'quill'
@Injectable()
export class RealtimeService {
// constructor(private readonly quil: Quil) {}
}