https://github.com/xuxiaowei-com-cn/go-gitee
基于 go 语言的 gitee SDK
https://github.com/xuxiaowei-com-cn/go-gitee
gitee gitee-api go golang sdk sdk-go
Last synced: 2 months ago
JSON representation
基于 go 语言的 gitee SDK
- Host: GitHub
- URL: https://github.com/xuxiaowei-com-cn/go-gitee
- Owner: xuxiaowei-com-cn
- License: apache-2.0
- Created: 2023-11-26T12:04:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-24T22:14:00.000Z (10 months ago)
- Last Synced: 2025-01-04T18:32:58.432Z (4 months ago)
- Topics: gitee, gitee-api, go, golang, sdk, sdk-go
- Language: Go
- Homepage:
- Size: 101 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG/README.md
- License: LICENSE
Awesome Lists containing this project
README
基于 go 语言的 gitee SDK
为简化开发工作、提高生产率、解决常见问题而生## [更新文档](CHANGELOG)
## 开发命令
### get
```shell
go env -w GOPROXY=https://goproxy.cn,direct
# go env -w GOPROXY=https://mirrors.aliyun.com/goproxy/
go get -u github.com/google/go-querystring
go get -u github.com/hashicorp/go-cleanhttp
go get -u github.com/hashicorp/go-retryablehttp
```### mod
```shell
go mod tidy
``````shell
go mod download
```### test
```shell
go test ./... -v
```