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

10 lines
304 B
TypeScript
Raw Normal View History

import { Module } from '@nestjs/common';
import { NotificationsService } from './notifications.service';
import { NotificationsController } from './notifications.controller';
@Module({
controllers: [NotificationsController],
2022-07-25 04:38:48 +00:00
providers: [NotificationsService],
})
export class NotificationsModule {}