Go library for accessing the nitrado.net API.
Note: go-nitrado is currently in development, so its API may have breaking changes.
import "github.com/danstis/go-nitrado/nitrado"
Create a new Nitrado client instance, then use provided methods on the client to access the API. For example, to list all services:
client := nitrado.NewClient("YourNitradoToken")
services, resp, err := client.Services.List()
Feature request tracking and voting is being tracked using GitHub discussions.
This API Client is based on the format and hard work of the go-github client library.