Redmage/server/routes/health_check.go

10 lines
148 B
Go
Raw Permalink Normal View History

2024-04-09 14:30:54 +07:00
package routes
import (
"net/http"
)
func (routes *Routes) HealthCheck(rw http.ResponseWriter, req *http.Request) {
_, _ = rw.Write([]byte{})
}