You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
356 B
15 lines
356 B
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)
|
|
}
|
|
|