Files
RayLab-Core/src/modules/health/health.service.ts
T
2026-08-02 17:44:50 +07:00

13 lines
230 B
TypeScript

import { Injectable } from '@nestjs/common';
@Injectable()
export class HealthService {
async getHealth() {
return {
status: 'ok',
timestamp: new Date().toISOString(),
service: 'raylab-core',
};
}
}