bbgo_origin/bbgo/exchange/max/exchange.go

10 lines
112 B
Go
Raw Normal View History

2020-08-31 04:32:51 +00:00
package max
type Exchange struct {
}
func NewExchange(key, secret string) *Exchange {
return &Exchange{
}
}