Go client library for custom Terraform Provider
To start using go-client
, install Go and go get
:
$ go get -u github.com/imseanconroy/go-client
package main
import (
"fmt"
"github.com/imseanconroy/go-client"
)
func main() {
token := "YOUR_TOKEN"
client, err := client.NewClient("http://localhost:3000", token)
if err != nil {
log.Fatalf("Error creating client: %v", err)
}
res, _ := client.Get("/tasks")
fmt.Println(res.Get("0.description").String())
}
This will print something like:
Create go client