Files
monie-backend/apps/notifications/src/notifications.module.ts

11 lines
319 B
TypeScript

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