feat: add basic app
This commit is contained in:
parent
d4c1af4831
commit
c94098afef
13 changed files with 1850 additions and 0 deletions
13
internal/currency/currency.go
Normal file
13
internal/currency/currency.go
Normal 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}
|
||||
)
|
||||
Reference in a new issue