From 35fd7fb48050057729ec7336d84b6ed1a7dd7fd7 Mon Sep 17 00:00:00 2001 From: Manu Mtz-Almeida Date: Sat, 23 May 2015 02:01:43 +0200 Subject: [PATCH] JSON flags are not longer needed. --- errors.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/errors.go b/errors.go index 926bfc22..b395c93a 100644 --- a/errors.go +++ b/errors.go @@ -25,9 +25,9 @@ const ( type ( Error struct { - Err error `json:"error"` - Type ErrorType `json:"-"` - Meta interface{} `json:"meta"` + Err error + Type ErrorType + Meta interface{} } errorMsgs []*Error