File size: 264 Bytes
170b9b6
76b46a3
170b9b6
 
 
76b46a3
170b9b6
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import { Controller, Get } from "@nestjs/common";
import { Public } from "./auth/public.decorator.js";

@Controller("admin")
export class HealthController {
  @Public()
  @Get("health")
  health() {
    return { status: "ok", ts: new Date().toISOString() };
  }
}