1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# Gitea SDK for Go
[](https://opensource.org/licenses/MIT)
[](https://gitea.com/gitea/go-sdk/releases)
[](https://discord.gg/Gitea)
[](https://goreportcard.com/report/code.gitea.io/sdk)
[](https://godoc.org/code.gitea.io/sdk/gitea)
This project acts as a client SDK implementation written in Go to interact with the Gitea API implementation. For further informations take a look at the current [documentation](https://pkg.go.dev/code.gitea.io/sdk/gitea).
Note: function arguments are escaped by the SDK.
## Use it
```go
import "code.gitea.io/sdk/gitea"
```
## Version Requirements
* go >= 1.13
* gitea >= 1.11
## Contributing
Fork -> Patch -> Push -> Pull Request
## Authors
* [Maintainers](https://github.com/orgs/go-gitea/people)
* [Contributors](https://github.com/go-gitea/go-sdk/graphs/contributors)
## License
This project is under the MIT License. See the [LICENSE](LICENSE) file for the full license text.
|