bbgo_origin/bbgo/exchange/max/exchange.go
2020-08-31 12:32:51 +08:00

10 lines
112 B
Go

package max
type Exchange struct {
}
func NewExchange(key, secret string) *Exchange {
return &Exchange{
}
}