mirror of
https://github.com/kevin-DL/football_info_api.git
synced 2026-01-11 10:04:28 +00:00
12 lines
174 B
Go
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
|
|
}
|