mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
16 lines
398 B
Go
16 lines
398 B
Go
package utils
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/muety/wakapi/config"
|
|
"net/http"
|
|
)
|
|
|
|
func RespondJSON(w http.ResponseWriter, r *http.Request, status int, object interface{}) {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
w.WriteHeader(status)
|
|
if err := json.NewEncoder(w).Encode(object); err != nil {
|
|
config.Log().Request(r).Error("error while writing json response: %v", err)
|
|
}
|
|
}
|