Delete suggest.go

This commit is contained in:
Ian Gulliver
2025-10-07 10:46:48 -07:00
committed by GitHub
parent 15adc1e434
commit ff2247de22

View File

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