瀏覽代碼

Cosmetic changes

Manu Mtz-Almeida 10 年之前
父節點
當前提交
992b00f96a
共有 1 個文件被更改,包括 9 次插入8 次删除
  1. 9 8
      errors.go

+ 9 - 8
errors.go

@@ -21,12 +21,15 @@ const (
 	ErrorTypeNu  = 2
 )
 
-// Used internally to collect errors that occurred during an http request.
-type Error struct {
-	Err  error       `json:"error"`
-	Type int         `json:"-"`
-	Meta interface{} `json:"meta"`
-}
+type (
+	Error struct {
+		Err  error       `json:"error"`
+		Type int         `json:"-"`
+		Meta interface{} `json:"meta"`
+	}
+
+	errorMsgs []*Error
+)
 
 var _ error = &Error{}
 
@@ -69,8 +72,6 @@ func (msg *Error) Error() string {
 	return msg.Err.Error()
 }
 
-type errorMsgs []*Error
-
 func (a errorMsgs) ByType(typ int) errorMsgs {
 	if len(a) == 0 {
 		return a