go package for interacting with the Linode API. Automatically batches requests.
As of now, it only supports two API methods:
apiKey := "secretAPIKey"
client := linode.NewClient(apiKey)
linodes, err := client.LinodeList()
ips, err := client.LinodeIPList([]int{1,2,3})