This commit is contained in:
zhaoxiaorong
2025-02-07 17:08:55 +08:00
parent fd62c5cddb
commit 58139791f3
8 changed files with 220 additions and 6 deletions

7
infra/handler.go Normal file
View File

@@ -0,0 +1,7 @@
package infra
import "github.com/gofiber/fiber/v2"
func Health(ctx *fiber.Ctx) error {
return ctx.SendStatus(200)
}