@@ -0,0 +1,8 @@
+package common
+
+import "encoding/json"
+func MarshalJSON(v interface{}) []byte {
+ j, _ := json.Marshal(v)
+ return j
+}