mirror of
https://github.com/woodchen-ink/webp_server_go.git
synced 2025-07-18 05:32:02 +08:00
Migrate the web framework from Fiber to Gin for better performance and community support.
12 lines
166 B
Go
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!🥳")
|
|
}
|