kinda working

This commit is contained in:
wagslane
2023-05-30 21:28:23 -06:00
parent 7d1852d380
commit 80ec635705
91 changed files with 13103 additions and 2 deletions

7
handler_ready.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "net/http"
func handlerReadiness(w http.ResponseWriter, r *http.Request) {
respondWithJSON(w, http.StatusOK, map[string]string{"status": "ok"})
}