生成swag

This commit is contained in:
2025-11-06 16:41:06 +08:00
parent 3761f8a88e
commit 342c9df3ff
4 changed files with 108 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ func NewController(ctx context.Context) *Controller {
// 它也适用于 Docker 的 HEALTHCHECK 指令。
// @Summary 服务存活检查
// @Description 检查服务进程是否运行正常,只要服务能响应就返回 200 OK。
// @Tags Health
// @Tags 健康检查
// @Produce json
// @Success 200 {object} controller.Response "服务存活"
// @Router /healthz [get]
@@ -36,7 +36,7 @@ func (c *Controller) Healthz(ctx echo.Context) error {
// Readyz 是一个简单的就绪检查端点,用于就绪探针 (Readiness Probe)。
// @Summary 服务就绪检查
// @Description 检查服务是否已准备好接收流量。当前实现为只要服务能响应即代表就绪。
// @Tags Health
// @Tags 健康检查
// @Produce json
// @Success 200 {object} controller.Response "服务已就绪"
// @Router /readyz [get]