Files
uber4freefood/Src/Backend/UserApi/utils/util.go
T
2020-03-22 14:02:47 +03:00

16 lines
351 B
Go

package utils
import (
"encoding/json"
"net/http"
)
func Message(status bool, message string) (map[string]interface{}) {
return map[string]interface{}{"status": status, "message": message}
}
func Respond(w http.ResponseWriter, data map[string]interface{}) {
w.Header().Add("Content-Type", "application/json")
json.NewEncoder(w).Encode(data)
}