Chore: temp words for test

This commit is contained in:
Grail Finder
2025-05-01 18:01:18 +03:00
parent 57e02ce58f
commit b5a67c2578

View File

@ -5,6 +5,14 @@ import (
"net/http"
)
var roundWords map[string]string{
"hamster": "blue",
"child": "red",
"wheel": "white",
"condition": "black",
"test": "white",
}
func HandlePing(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("pong"))
}