FancyHands API wrapper in Go!
go get github.com/ameng/fancyhands-go
package main
import (
"fmt"
"github.com/ameng/fancyhands-go"
)
func main() {
client := fancyhands.NewTestClient("YOUR KEY HERE", "YOUR SECRET HERE")
status_code, response, err := client.Echo("hello world")
if err != nil {
fmt.Println(err)
} else {
fmt.Println(status_code, response)
}
}
Read the documentation at godoc.org