ccxt-go/exchange_client.go

13 lines
249 B
Go
Raw Normal View History

2025-02-28 10:33:20 +08:00
package ccxt
type Client struct {
Futures map[string]interface{}
Subscriptions map[string]interface{}
}
func (c *Client) Reject(err interface{}, subHash interface{}) {
}
func (c *Client) Resolve(subHash interface{}, data interface{}) {
}