Skip to content

Commit

Permalink
add health to swagger
Browse files Browse the repository at this point in the history
  • Loading branch information
f-w committed May 2, 2024
1 parent add5539 commit ab232b4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/api/health/health.controller.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Controller, Get } from '@nestjs/common';
import { ApiTags } from '@nestjs/swagger';
import {
HealthCheck,
HealthCheckService,
Expand All @@ -9,6 +10,7 @@ import { ConfigHealthService } from './config-health.service';
import { RedisHealthService } from './redis-health.service';

@Controller('health')
@ApiTags('health')
export class HealthController {
constructor(
private health: HealthCheckService,
Expand Down

0 comments on commit ab232b4

Please sign in to comment.