Files
stack/apps/gateway/src/health/health.controller.ts
2026-03-13 01:11:46 +00:00

10 lines
181 B
TypeScript

import { Controller, Get } from '@nestjs/common';
@Controller('health')
export class HealthController {
@Get()
check(): { status: string } {
return { status: 'ok' };
}
}