Files
football_info_api/general/handler.go
2023-07-02 15:26:53 +01:00

12 lines
174 B
Go

package general
import (
"football_api/helpers"
"net/http"
)
func HandleHealth(w http.ResponseWriter, r *http.Request) {
helpers.RespondWithJson(w, 200, "OK")
return
}