import { Injectable } from '@nestjs/common'; @Injectable() export class AppService { getHealth(): { status: string; service: string } { return { status: 'ok', service: 'oudelaa-backend' }; } }