2
0

portfolio.go 142 B

123456
  1. package main
  2. type Portfolio interface {
  3. // Get returns Position of the symbol if exists in Portfolio
  4. Get(symbol string) (Position, bool)
  5. }