1
0
Fork 0

feat: add basic app

This commit is contained in:
Vojtěch Mareš 2024-10-10 21:29:08 +02:00
parent d4c1af4831
commit c94098afef
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
13 changed files with 1850 additions and 0 deletions

View file

@ -0,0 +1,13 @@
package currency
type Currency string
const (
USD Currency = "USD"
EUR Currency = "EUR"
CZK Currency = "CZK"
)
var (
SupportedCurrencies = []Currency{USD, EUR, CZK}
)