21 lines
400 B
Go
21 lines
400 B
Go
![]() |
package ccxt
|
||
|
|
||
|
type Bitpanda struct {
|
||
|
*bitpanda
|
||
|
Core *bitpanda
|
||
|
}
|
||
|
|
||
|
func NewBitpanda(userConfig map[string]interface{}) Bitpanda {
|
||
|
p := &bitpanda{}
|
||
|
p.Init(userConfig)
|
||
|
return Bitpanda{
|
||
|
bitpanda: 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
|
||
|
|
||
|
|