Files
p/suggest.go
2024-11-26 13:29:56 -06:00

14 lines
212 B
Go

package main
import (
"net/http"
)
type SuggestResponse struct {
Message string `json:"message"`
}
func sendSuggestResponse(w http.ResponseWriter, msg string) {
sendJSON(w, SuggestResponse{Message: msg})
}