mirror of
https://github.com/lingble/twenty.git
synced 2025-11-29 04:13:49 +00:00
13 lines
279 B
TypeScript
13 lines
279 B
TypeScript
import { Controller, Get } from '@nestjs/common';
|
|
import { AppService } from './app.service';
|
|
|
|
@Controller()
|
|
export class AppController {
|
|
constructor(private readonly appService: AppService) {}
|
|
|
|
@Get('/health')
|
|
health(): string {
|
|
return this.appService.health();
|
|
}
|
|
}
|