mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
16 lines
289 B
Go
16 lines
289 B
Go
package max
|
|
|
|
type AuthMessage struct {
|
|
Action string `json:"action"`
|
|
APIKey string `json:"apiKey"`
|
|
Nonce int64 `json:"nonce"`
|
|
Signature string `json:"signature"`
|
|
ID string `json:"id"`
|
|
}
|
|
|
|
type AuthEvent struct {
|
|
Event string
|
|
ID string
|
|
Timestamp int64
|
|
}
|