ccxt-go/gateio.go
zhangkun9038@dingtalk.com 1a2ce7046a first add
2025-02-28 10:33:20 +08:00

30 lines
656 B
Go

package ccxt
// PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
// https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
type gateio struct {
gate
}
func NewGateioCore() gateio {
p := gateio{}
setDefaults(&p)
return p
}
func (this *gateio) Describe() interface{} {
return this.DeepExtend(this.gate.Describe(), map[string]interface{} {
"id": "gateio",
"alias": true,
})
}
func (this *gateio) Init(userConfig map[string]interface{}) {
this.gate.Init(this.DeepExtend(this.Describe(), userConfig))
this.Itf = this
this.Exchange.DerivedExchange = this
}