Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 744 Bytes

README.md

File metadata and controls

44 lines (32 loc) · 744 Bytes

FancyHands-Go

FancyHands API wrapper in Go!

Installation:

go get github.com/ameng/fancyhands-go

Example:

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)
    }
}

Documentation:

Read the documentation at godoc.org

License:

MIT