9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
import { Controller, Get } from '@nestjs/common';
|
|
|
|
@Controller()
|
|
export class HealthcheckController {
|
|
@Get('healthcheck')
|
|
health() {
|
|
return { status: 'healthy' };
|
|
}
|
|
}
|