Fixed headers and added endpoints

This commit is contained in:
2022-12-06 14:26:47 +03:00
parent 4e566187f0
commit 3a962cc8a3
2 changed files with 17 additions and 2 deletions

View File

@ -66,8 +66,8 @@ func (g group) Endpoint(path string, f apiFunc) *group {
}
func StatusAndContent(w http.ResponseWriter, status int, contentType string) {
w.WriteHeader(status)
w.Header().Add("Content-Type", contentType)
w.WriteHeader(status)
}
func WriteJSON(w http.ResponseWriter, status int, v any) error {