import { Module } from '@nestjs/common';
import { SendNotificationService } from './send-notification.service';
import { SendNotificationController } from './send-notification.controller';

@Module({
  controllers: [SendNotificationController],
  providers: [SendNotificationService],
})
export class SendNotificationModule {}
