fix(mining-service): make health endpoints public

This commit is contained in:
hailin 2026-01-14 07:35:42 -08:00
parent 30dc2f6665
commit 106a287260
1 changed files with 2 additions and 0 deletions

View File

@ -2,9 +2,11 @@ import { Controller, Get } from '@nestjs/common';
import { ApiTags, ApiOperation, ApiResponse } from '@nestjs/swagger';
import { PrismaService } from '../../infrastructure/persistence/prisma/prisma.service';
import { RedisService } from '../../infrastructure/redis/redis.service';
import { Public } from '../../shared/guards/jwt-auth.guard';
@ApiTags('Health')
@Controller('health')
@Public()
export class HealthController {
constructor(
private readonly prisma: PrismaService,