26 lines
507 B
Go
26 lines
507 B
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
)
|
|
|
|
func respondWithError(w http.ResponseWriter, code int, msg string) {
|
|
type returnVals struct {
|
|
Error string `json:"error"`
|
|
}
|
|
|
|
respondWithJSON(w, code, returnVals{Error: msg})
|
|
}
|
|
|
|
func respondWithJSON(w http.ResponseWriter, code int, payload any) {
|
|
dat, err := json.Marshal(payload)
|
|
if err != nil {
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
return
|
|
}
|
|
w.Header().Set("Content-Type", "application/json")
|
|
w.WriteHeader(code)
|
|
w.Write(dat)
|
|
}
|