Browse Source

Strategy

- remove Version
Alexey Kim 6 months ago
parent
commit
baac43787f
3 changed files with 0 additions and 7 deletions
  1. 0 1
      strategy.go
  2. 0 3
      strategy/btc306.go
  3. 0 3
      version.go

+ 0 - 1
strategy.go

@@ -2,7 +2,6 @@ package sentio
 
 type Strategy interface {
 	Name() string
-	Version() string
 
 	Model() string
 	MarketId() string

+ 0 - 3
strategy/btc306.go

@@ -17,9 +17,6 @@ type _ibkr struct {
 func (s _ibkr) Name() string {
 	return "BTC: BITO/BITI"
 }
-func (s _ibkr) Version() string {
-	return sentio.Version
-}
 
 func (s _ibkr) Model() string {
 	return "btc306"

+ 0 - 3
version.go

@@ -1,3 +0,0 @@
-package sentio
-
-var Version = "0.0.0-dev"