mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-22 23:16:48 +00:00
13 lines
213 B
Go
13 lines
213 B
Go
package main
|
|
|
|
type IBotExchange interface {
|
|
Setup(exch Exchanges)
|
|
Start()
|
|
SetDefaults()
|
|
GetName() string
|
|
IsEnabled() bool
|
|
GetTickerPrice(currency string) TickerPrice
|
|
//GetEnabledCurrencies() []string
|
|
}
|
|
|