sigmavirus24 / heroku-go

Heroku Platform API Go Client

Home Page:https://godoc.org/github.com/cyberdelia/heroku-go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Heroku Platform API

GoDoc

An API client interface for Heroku Platform API for the Go (golang) programming language.

Installation

To download, build, and install the package:

$ go get github.com/cyberdelia/heroku-go/v3

Example

package main

import (
	"context"
	"flag"
	"fmt"
	"log"

	"github.com/cyberdelia/heroku-go/v3"
)

var (
	username = flag.String("username", "", "api username")
	password = flag.String("password", "", "api password")
)

func main() {
	log.SetFlags(0)
	flag.Parse()

	heroku.DefaultTransport.Username = *username
	heroku.DefaultTransport.Password = *password

	h := heroku.NewService(heroku.DefaultClient)
	addons, err := h.AddOnList(context.TODO(), &heroku.ListRange{Field: "name"})
	if err != nil {
		log.Fatal(err)
	}
	for _, addon := range addons {
		fmt.Println(addon.Name)
	}
}

About

Heroku Platform API Go Client

https://godoc.org/github.com/cyberdelia/heroku-go

License:MIT License


Languages

Language:Go 99.8%Language:Shell 0.2%