Files
gocryptotrader/interfaces.go

11 lines
194 B
Go

package main
///<Interface code>
type IBotExchange interface {
Setup(exch Exchanges)
Start()
SetDefaults()
GetName() string
IsEnabled() bool
}
///</Interface code>