All Projects → evrone → vscale_api

evrone / vscale_api

Licence: other
Api client for Vscale (http://vscale.io) like godo

Programming Languages

go
31211 projects - #10 most used programming language

Vscale API

Vexor status

Installation and documentation

To install Vscale API, simply run:

$ go get github.com/evrone/vscale_api

Getting Started

package main
import(
  "fmt"
  vscale "github.com/evrone/vscale_api"
)

func GetAccountInfo() {
  client := vscale.New("API_SECRET_TOKEN")
  account, _, err := client.Account.Get()
  if err != nil {
    panic(err)
  }
  fmt.Printf("Account info: %v", account)
}

Contribution Guidelines

  1. Fork
  2. Change
  3. PR
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].