13 lines
230 B
TypeScript
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',
|
|
};
|
|
}
|
|
}
|