Skip to content

danstis/go-nitrado

Repository files navigation

go-nitrado

Build Test and Release DeepSource Maintainability codecov

Go library for accessing the nitrado.net API.

Note: go-nitrado is currently in development, so its API may have breaking changes.

Usage

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 requests

Feature request tracking and voting is being tracked using GitHub discussions.

Credit

This API Client is based on the format and hard work of the go-github client library.