webp_server_go/handler/healthz.go
wood chen 5e2052a711 refactor(api): migrate from Fiber to Gin framework
Migrate the web framework from Fiber to Gin for better performance and community support.
2024-10-28 16:56:29 +08:00

12 lines
166 B
Go

package handler
import (
"net/http"
"github.com/gin-gonic/gin"
)
func Healthz(c *gin.Context) {
c.String(http.StatusOK, "WebP Server Go up and running!🥳")
}