This commit is contained in:
2025-12-09 17:02:27 +09:00
parent 26f8e1dab2
commit 83127da569
275 changed files with 139682 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
import { Controller, Get } from '@nestjs/common';
import { AppService } from './app.service';
import { Public } from './common/decorators/public.decorator';
@Controller() // 루트 경로 '/'
export class AppController {
constructor(private readonly appService: AppService) {}
@Public() // healthcheck를 위해 인증 제외
@Get()
getHello(): string {
return this.appService.getHello();
}
}