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

9 lines
152 B
TypeScript

import { Injectable } from '@nestjs/common';
@Injectable()
export class NotificationsService {
getHello(): string {
return 'Hello World!';
}
}