mirror of
https://github.com/woodchen-ink/webp_server_go.git
synced 2025-07-18 13:42:02 +08:00
10 lines
156 B
Go
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!🥳")
|
|
}
|