2014-09-01 16:50:51 +04:00
|
|
|
package util
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
2014-09-12 13:10:58 +04:00
|
|
|
|
|
|
|
"github.com/golang/glog"
|
2014-09-01 16:50:51 +04:00
|
|
|
)
|
|
|
|
|
2014-10-29 13:15:18 +03:00
|
|
|
// RetJSON writes HTTP response with "Content-Type, application/json".
|
2014-09-01 16:50:51 +04:00
|
|
|
func RetJSON(w http.ResponseWriter, r *http.Request, res map[string]interface{}) {
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
|
|
|
|
data, err := json.Marshal(res)
|
|
|
|
if err != nil {
|
|
|
|
glog.Error(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
w.Write(data)
|
|
|
|
}
|