31 lines
721 B
Go
31 lines
721 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 bitcoincom struct {
|
||
|
fmfwio
|
||
|
|
||
|
}
|
||
|
|
||
|
func NewBitcoincomCore() bitcoincom {
|
||
|
p := bitcoincom{}
|
||
|
setDefaults(&p)
|
||
|
return p
|
||
|
}
|
||
|
|
||
|
func (this *bitcoincom) Describe() interface{} {
|
||
|
return this.DeepExtend(this.fmfwio.Describe(), map[string]interface{} {
|
||
|
"id": "bitcoincom",
|
||
|
"name": "Bitcoin.com",
|
||
|
"alias": true,
|
||
|
})
|
||
|
}
|
||
|
|
||
|
|
||
|
func (this *bitcoincom) Init(userConfig map[string]interface{}) {
|
||
|
this.fmfwio.Init(this.DeepExtend(this.Describe(), userConfig))
|
||
|
this.Itf = this
|
||
|
this.Exchange.DerivedExchange = this
|
||
|
}
|