summaryrefslogtreecommitdiffstats
path: root/lib/common/error.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/common/error.go')
-rw-r--r--lib/common/error.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/common/error.go b/lib/common/error.go
new file mode 100644
index 0000000..d03c176
--- /dev/null
+++ b/lib/common/error.go
@@ -0,0 +1,13 @@
+package common
+
+import (
+ "github.com/gin-gonic/gin"
+)
+
+// APIError returns an uniform json formatted error
+func APIError(c *gin.Context, err string) {
+ c.JSON(500, gin.H{
+ "status": "error",
+ "error": err,
+ })
+}