Explorar o código

MarketAccount

- refactoring
Alexey Kim hai 2 semanas
pai
achega
ea1006bbb1
Modificáronse 1 ficheiros con 4 adicións e 2 borrados
  1. 4 2
      market_account.go

+ 4 - 2
market_account.go

@@ -2,8 +2,10 @@ package sentio
 
 type MarketAccount interface {
 	GetId() string
+
 	GetName() string
 
-	Cash() (float64, error)
-	Equity() (float64, error)
+	GetCash() float64
+	
+	GetEquity() float64
 }