Files
gocryptotrader/interfaces.go
2016-03-19 16:38:38 +11:00

10 lines
129 B
Go

package main
type IBotExchange interface {
Setup(exch Exchanges)
Start()
SetDefaults()
GetName() string
IsEnabled() bool
}