Skip to content

Commit

Permalink
[CHORE] BE-config 업데이트 및 health api 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yubinquitous committed May 6, 2024
1 parent 3fe1337 commit edbb791
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BE-config
5 changes: 3 additions & 2 deletions src/health/health.controller.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import { Controller } from '@nestjs/common';
import { Controller, Get } from '@nestjs/common';
import { ApiOperation, ApiTags } from '@nestjs/swagger';

@Controller('health')
@ApiTags('health')
export class HealthController {
@Get('/')
@ApiOperation({
summary: '헬스 체크',
description: '서버의 상태를 체크합니다.',
})
async healthCheck() {
healthCheck() {
return 'ok';
}
}

0 comments on commit edbb791

Please sign in to comment.