11 lines
166 B
Go
11 lines
166 B
Go
|
package domain
|
||
|
|
||
|
type Coin string
|
||
|
|
||
|
const CoinBTC Coin = "coingecko:bitcoin"
|
||
|
|
||
|
type FiatCurrency string
|
||
|
|
||
|
const FiatCurrencyDollar = "USD"
|
||
|
const FiatCurrencyEuro = "EUR"
|