소스 검색

MarketAccount

- refactoring
Alexey Kim 2 주 전
부모
커밋
ea1006bbb1
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  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
 }