mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 08:18:07 +00:00
7 lines
187 B
Go
7 lines
187 B
Go
package client
|
|
|
|
type MinimalHTTPClient interface {
|
|
GetNextNonce(accountIndex int64, apiKeyIndex uint8) (int64, error)
|
|
GetApiKey(accountIndex int64, apiKeyIndex uint8) (string, error)
|
|
}
|