mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-14 15:09:51 +00:00
New endpoint to retrieve values for all enabled currency data for all enabled exchanges and return it as JSON object for front end
12 lines
207 B
Go
12 lines
207 B
Go
package main
|
|
|
|
type IBotExchange interface {
|
|
Setup(exch Exchanges)
|
|
Start()
|
|
SetDefaults()
|
|
GetName() string
|
|
IsEnabled() bool
|
|
GetTickerPrice(currency string) TickerPrice
|
|
GetEnabledCurrencies() []string
|
|
}
|