An open API service indexing awesome lists of open source software.

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

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"
})
```