Files
ContentGen_BE/src/modules/render-callback/render-callback.module.ts
Harun CAN acb103657b
Some checks failed
Backend Deploy 🚀 / build-and-deploy (push) Has been cancelled
main
2026-03-30 00:21:32 +03:00

11 lines
389 B
TypeScript

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 {}