webp_server_go/handler/healthz.go
2023-11-23 15:40:29 +08:00

10 lines
156 B
Go

package handler
import (
"github.com/gofiber/fiber/v2"
)
func Healthz(c *fiber.Ctx) error {
return c.SendString("WebP Server Go up and running!🥳")
}