diff options
Diffstat (limited to 'json.go')
-rw-r--r-- | json.go | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -0,0 +1,21 @@ +// SPDX-FileCopyrightText: 2020 Ethel Morgan +// +// SPDX-License-Identifier: MIT + +package httputil + +import ( + "encoding/json" + "fmt" + "net/http" +) + +// MustWriteJSON writes data to w, panicking if it cannot. +// It panics because being unable to marshal JSON is programmer error, and not recoverable. +func MustWriteJSON(w http.ResponseWriter, data interface{}) { + blob, err := json.Marshal(data) + if err != nil { + panic(fmt.Sprintf("could not marshal JSON: %v", err)) + } + w.Write(blob) +} |