Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-26T15:57:14.000Z (about 1 year ago)
- Last Synced: 2024-06-21T06:30:31.287Z (6 months ago)
- Topics: gitee, gitee-api, go, golang, sdk, sdk-go
- Language: Go
- Homepage:
- Size: 97.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
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
```