katoikia-app/servicio-notificaciones/src/notifications/notifications.module.ts

10 lines
304 B
TypeScript

import { Module } from '@nestjs/common';
import { NotificationsService } from './notifications.service';
import { NotificationsController } from './notifications.controller';
@Module({
controllers: [NotificationsController],
providers: [NotificationsService],
})
export class NotificationsModule {}