gitee.com/woood2/luca@v1.0.4/internal/errcode/resp.go (about) 1 package errcode 2 //4 restful & micro service 3 type Resp struct { 4 ErrCode string `json:"errCode"` 5 ErrMsg string `json:"errMsg"` 6 Data interface{} `json:"data"` 7 TraceID string `json:"traceID"` //only 4 restful 8 Stack string `json:"stack"` //only 4 restful, non-pro env 9 }