Files
gocryptotrader/interfaces.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
}