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