import { Controller, Get } from "@nestjs/common";
import { HealthResponse } from "@slackwsh/contracts";

@Controller("health")
export class HealthController {
  @Get()
  check(): HealthResponse {
    return { status: "ok", service: "api", time: new Date().toISOString() };
  }
}
