]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front.git/blame - markets/balance.go
Error flags.
[perso/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front.git] / markets / balance.go
CommitLineData
50c6eea6 1package markets
2
3import (
4 "github.com/shopspring/decimal"
5)
6
7type Balance struct {
8 Amount decimal.Decimal `json:"amount"`
9 BTCValue decimal.Decimal `json:"btcValue"`
10}
11
12type Summary struct {
13 Balances map[string]Balance
14 BTCValue decimal.Decimal
15}