StarlioX/api/utils/utils.go
2022-09-25 11:04:32 +03:00

19 lines
449 B
Go

package utils
import (
"encoding/json"
"github.com/Redume/EveryNasa/functions"
"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")
err := json.NewEncoder(w).Encode(data)
if err != nil {
functions.Logger(err.Error())
}
}