initial commits
parent
c5ee57c881
commit
3a2cac064f
|
@ -0,0 +1,20 @@
|
||||||
|
package mstdn
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"net/http"
|
||||||
|
)
|
||||||
|
|
||||||
|
func OK(resp http.ResponseWriter, value interface{}) {
|
||||||
|
if nil == resp {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
resp.WriteHeader(http.StatusOK)
|
||||||
|
resp.Header().Add("Content-Type", "application/json; charset=utf-8")
|
||||||
|
|
||||||
|
err := json.NewEncoder(resp).Encode(value)
|
||||||
|
if nil != err {
|
||||||
|
// Nothing here.
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue