mirror of
https://github.com/Starlio-app/StarlioX
synced 2024-11-05 06:03:57 +03:00
19 lines
400 B
Go
19 lines
400 B
Go
package utils
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
)
|
|
|
|
func Message(status bool, message string) map[string]interface{} {
|
|
return map[string]interface{}{"status": status, "message": message}
|
|
}
|
|
|
|
func Respond(c *fiber.Ctx, data map[string]interface{}) {
|
|
c.Set("Content-Type", "application/json")
|
|
err := json.NewEncoder(c).Encode(data)
|
|
if err != nil {
|
|
Logger(err.Error())
|
|
}
|
|
}
|