Skip to content

ImSeanConroy/go-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-client

Go client library for custom Terraform Provider

Getting Started

Installing

To start using go-client, install Go and go get:

$ go get -u github.com/imseanconroy/go-client

Basic Usage

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

About

Go client library for custom Terraform Provider

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages