14 lines
241 B
TypeScript
14 lines
241 B
TypeScript
import { Controller, Get } from '@nestjs/common';
|
|
|
|
@Controller()
|
|
export class AppController {
|
|
@Get('health')
|
|
health() {
|
|
return {
|
|
ok: true,
|
|
service: 'codexdash-api',
|
|
timestamp: new Date().toISOString(),
|
|
};
|
|
}
|
|
}
|