Skip to content

takuchalle/goincheck

Repository files navigation

goincheck

coincheck exchange client API for golang

Build Status Go Documentation MIT License

Installation

$ go get github.com/takuyaohashi/goincheck

Usage Example

package main

import (
    "fmt"

    "github.com/takuyaohashi/goincheck"
)

const (
    accessKey       = "hoge"
    secretAccessKey = "huga"
)

func main() {
    client, _ := goincheck.NewClient(accessKey, secretAccessKey)
    tikcer, _ := client.GetTicker()
    fmt.Printf("Tikcer = %+v\n", tikcer)
}

For detail, please check sample/cmd/goincheck directory or GoDoc.

License

MIT

Author

Takuya OHASHI

About

coincheck client API for golang

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published