You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
353 B
Go
18 lines
353 B
Go
package httputil
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
)
|
|
|
|
type H map[string]interface{}
|
|
|
|
func WriteJSON(w http.ResponseWriter, data interface{}) error {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
return json.NewEncoder(w).Encode(data)
|
|
}
|
|
|
|
func ReadJSON(r *http.Request, data interface{}) error {
|
|
return json.NewDecoder(r.Body).Decode(data)
|
|
}
|