# Functions
No description provided by the author
CheckHTTPResponse 请不要使用 err = CheckHTTPResponse 函数,因为这个函数返回的是 *errors.Error,而 err = CheckHTTPResponse 返回的是 error 请使用 if e := CheckHTTPResponse(response); e != nil {return errorpkg.WithStack(err)}.
CheckHTTPStatus 请不要使用 err = CheckHTTPStatus 函数,因为这个函数返回的是 *errors.Error,而 err = CheckHTTPStatus 返回的是 error 请使用 if e := CheckHTTPStatus(response); e != nil {return errorpkg.WithStack(err)}.
CheckResponseCode 请不要使用 err = CheckResponseCode 函数,因为这个函数返回的是 *errors.Error,而 err = CheckResponseCode 返回的是 error 请使用 if e := CheckResponseCode(response); e != nil {return errorpkg.WithStack(err)}.
CheckResponseStatus 请不要使用 err = CheckResponseStatus 函数,因为这个函数返回的是 *errors.Error,而 err = CheckResponseStatus 返回的是 error 请使用 if e := CheckResponseStatus(response); e != nil {return errorpkg.WithStack(err)}.
No description provided by the author
No description provided by the author
# Interfaces
No description provided by the author