lbank-connector-go/examples/market/rsa/market.go

22 lines
320 B
Go

package main
const (
apiKey = ""
secretKey = ""
)
var client = sve.NewClient(apiKey, secretKey)
func TestDepth() {
client.Debug = true
client.SetHost(sve.LbankApiHost)
data := map[string]string{
"symbol": "lbk_usdt",
"size": "1",
}
client.NewMarketService().Depth(data)
}
func main() {
TestDepth()
}