Initial commit

This commit is contained in:
2023-07-02 15:26:53 +01:00
committed by GitHub
commit 16ca35eb45
42 changed files with 4536 additions and 0 deletions

11
general/handler.go Normal file
View File

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