package api
import "github.com/gin-gonic/gin"
func errorResponse(err error, msg string) gin.H {
return gin.H{
"error": err.Error(),
"message": msg,
}