/linode

go package for interacting with the Linode API

Primary LanguageGoMIT LicenseMIT

linode

go package for interacting with the Linode API. Automatically batches requests.

GoDoc

As of now, it only supports two API methods:

Usage

apiKey := "secretAPIKey"
client := linode.NewClient(apiKey)

linodes, err := client.LinodeList()
ips, err := client.LinodeIPList([]int{1,2,3})