mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-14 19:13:52 +00:00
20 lines
360 B
Go
20 lines
360 B
Go
package v3
|
|
|
|
import (
|
|
"github.com/c9s/requestgen"
|
|
|
|
maxapi "github.com/c9s/bbgo/pkg/exchange/max/maxapi"
|
|
)
|
|
|
|
// create type alias
|
|
type WalletType = maxapi.WalletType
|
|
type OrderByType = maxapi.OrderByType
|
|
type OrderType = maxapi.OrderType
|
|
|
|
type Order = maxapi.Order
|
|
type Account = maxapi.Account
|
|
|
|
type Client struct {
|
|
Client requestgen.AuthenticatedAPIClient
|
|
}
|