aitasker / backend /src /app.controller.ts
minhhungg's picture
feat: upload dataset and simulation files to Hugging Face
675f6bd
Raw
History Blame Contribute Delete
250 Bytes
import { Controller, Get } from '@nestjs/common';
import { ApiTags } from '@nestjs/swagger';
@ApiTags('Health')
@Controller()
export class AppController {
@Get('health')
health() {
return { status: 'ok', service: 'aitasker-backend' };
}
}