Skip to content

AMeng/fancyhands-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

FancyHands API Wrapper in GoLang

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages