main
Some checks failed
Backend Deploy 🚀 / build-and-deploy (push) Has been cancelled

This commit is contained in:
Harun CAN
2026-03-30 00:21:32 +03:00
parent 85c35c73e8
commit acb103657b
29 changed files with 11473 additions and 13081 deletions

View File

@@ -0,0 +1,10 @@
import { Module } from '@nestjs/common';
import { RenderCallbackController } from './render-callback.controller';
import { EventsModule } from '../events/events.module';
import { NotificationsModule } from '../notifications/notifications.module';
@Module({
imports: [EventsModule, NotificationsModule],
controllers: [RenderCallbackController],
})
export class RenderCallbackModule {}