9 أسطر
202 B
TypeScript
9 أسطر
202 B
TypeScript
import { Injectable } from '@nestjs/common';
|
|
|
|
@Injectable()
|
|
export class AppService {
|
|
getHealth(): { status: string; service: string } {
|
|
return { status: 'ok', service: 'oudelaa-backend' };
|
|
}
|
|
}
|