21 lines
384 B
Go
21 lines
384 B
Go
![]() |
package ccxt
|
||
|
|
||
|
type Gateio struct {
|
||
|
*gateio
|
||
|
Core *gateio
|
||
|
}
|
||
|
|
||
|
func NewGateio(userConfig map[string]interface{}) Gateio {
|
||
|
p := &gateio{}
|
||
|
p.Init(userConfig)
|
||
|
return Gateio{
|
||
|
gateio: p,
|
||
|
Core: p,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// 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
|
||
|
|
||
|
|