File size: 386 Bytes
dcf3508 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import { Controller, Get } from '@nestjs/common';
@Controller()
export class AppController {
@Get()
getRootHealth() {
return {
status: 'healthy',
service: 'PhiloMind NestJS Backend',
timestamp: new Date().toISOString(),
};
}
@Get('health')
getHealth() {
return {
status: 'healthy',
timestamp: new Date().toISOString(),
};
}
}
|