Files
backend/utils/getHealthz.go
Yi-Ting Shih ad4fba1093
All checks were successful
Go test / run-go-test (push) Successful in 31s
Go test / run-go-vet (push) Successful in 5s
Go test / cleanup-go-test (push) Successful in 4s
Feat: add healthz
2025-12-09 00:55:08 +08:00

14 lines
167 B
Go

package utils
import (
"net/http"
"github.com/uptrace/bunrouter"
)
func GetHealthz(
w http.ResponseWriter, req bunrouter.Request,
) error {
return Success(w)
}