https://github.com/brandonc/go-readme
A go HTTP client for interacting with the readme.com API
https://github.com/brandonc/go-readme
Last synced: 3 months ago
JSON representation
A go HTTP client for interacting with the readme.com API
- Host: GitHub
- URL: https://github.com/brandonc/go-readme
- Owner: brandonc
- License: mit
- Created: 2021-09-07T05:30:06.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-07T05:31:44.000Z (over 3 years ago)
- Last Synced: 2024-12-28T16:26:28.874Z (5 months ago)
- Language: Go
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelogs.go
- License: LICENSE
Awesome Lists containing this project
README
# go-readme
---A go HTTP client for interacting with the [readme.com](https://readme.com/) [API](https://docs.readme.com/reference/intro-to-the-readme-api)
### Example
```go
client, err := readme.NewClient(&Config{
ApiKey: "12345",
})response, err := client.ApiSpecifications.Upload(context.Background(), readme.ApiSpecificationUploadOptions{
SpecPath: "./helloOpenAPI.json",
Version: "1.0"
})
```