mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 23:16:45 +00:00
10 lines
129 B
Go
10 lines
129 B
Go
package main
|
|
|
|
type IBotExchange interface {
|
|
Setup(exch Exchanges)
|
|
Start()
|
|
SetDefaults()
|
|
GetName() string
|
|
IsEnabled() bool
|
|
}
|