الملفات
back_end_oudelaa/src/app.service.ts
2026-04-20 15:12:16 +03:00

9 أسطر
202 B
TypeScript

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