error.go 159 B

1234567
  1. package util
  2. // CommonError 抖音返回的通用错误.
  3. type CommonError struct {
  4. ErrCode int64 `json:"error_code"`
  5. ErrMsg string `json:"description"`
  6. }