feat: set up project

This commit is contained in:
2023-07-19 11:47:46 +02:00
parent fac61db3f1
commit b426a36570
45 changed files with 2388 additions and 4 deletions

10
internal/domain/coin.go Normal file
View File

@@ -0,0 +1,10 @@
package domain
type Coin string
const CoinBTC Coin = "coingecko:bitcoin"
type FiatCurrency string
const FiatCurrencyDollar = "USD"
const FiatCurrencyEuro = "EUR"