30 lines
688 B
Go
30 lines
688 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 bitpanda struct {
|
||
|
onetrading
|
||
|
|
||
|
}
|
||
|
|
||
|
func NewBitpandaCore() bitpanda {
|
||
|
p := bitpanda{}
|
||
|
setDefaults(&p)
|
||
|
return p
|
||
|
}
|
||
|
|
||
|
func (this *bitpanda) Describe() interface{} {
|
||
|
return this.DeepExtend(this.onetrading.Describe(), map[string]interface{} {
|
||
|
"id": "bitpanda",
|
||
|
"alias": true,
|
||
|
})
|
||
|
}
|
||
|
|
||
|
|
||
|
func (this *bitpanda) Init(userConfig map[string]interface{}) {
|
||
|
this.onetrading.Init(this.DeepExtend(this.Describe(), userConfig))
|
||
|
this.Itf = this
|
||
|
this.Exchange.DerivedExchange = this
|
||
|
}
|