Golang tool for connecting to Shopify's API
You need to have Git and Go already installed. Run this in your terminal
go get github.com/arduino/go-shopify
Import it in your Go code:
import (
"github.com/arduino/go-shopify/shopify"
)
To initialize a client you need the shopify private app password
shop := shopify.NewClient("your-shop-domain", "app-password")
See client functions used in example/example.go