mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-14 07:26:47 +00:00
11 lines
194 B
Go
11 lines
194 B
Go
package main
|
|
|
|
///<Interface code>
|
|
type IBotExchange interface {
|
|
Setup(exch Exchanges)
|
|
Start()
|
|
SetDefaults()
|
|
GetName() string
|
|
IsEnabled() bool
|
|
}
|
|
///</Interface code> |