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