diff --git a/README.md b/README.md index 773026a..5386379 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ### 使用Go mod 在您的项目中的`go.mod`文件内添加这行代码 ```bash -require github.com/jsyzchen/pan v0.0.5 +require github.com/jsyzchen/pan v0.0.6 ``` 并在项目中引入`github.com/jsyzchen/pan` ```go diff --git a/conf/conf.go b/conf/conf.go index d27584e..b88b6a4 100644 --- a/conf/conf.go +++ b/conf/conf.go @@ -3,13 +3,13 @@ package conf type PcsResponseBase struct { ErrorCode int `json:"error_code"` ErrorMsg string `json:"error_msg"` - RequestID int `json:"request_id"` + RequestID uint64 `json:"request_id"` } type CloudDiskResponseBase struct { ErrorCode int `json:"errno"` ErrorMsg string `json:"errmsg"` - RequestID int `json:"request_id"` + RequestID uint64 `json:"request_id"` } type TestDataConfig struct { @@ -26,7 +26,7 @@ type TestDataConfig struct { TranscodingType string } -const Version = "0.0.5" +const Version = "0.0.6" const ( BaiduOpenApiDomain = "https://openapi.baidu.com"