WIP: EOL
This commit is contained in:
parent
7ed1e05284
commit
49e05cac10
23 changed files with 613 additions and 253 deletions
13
internal/currency/currency.go
Normal file
13
internal/currency/currency.go
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
package currency
|
||||
|
||||
type Currency string
|
||||
|
||||
var (
|
||||
Currencies = []Currency{CZK, EUR, USD}
|
||||
)
|
||||
|
||||
const (
|
||||
CZK Currency = "CZK"
|
||||
EUR Currency = "EUR"
|
||||
USD Currency = "USD"
|
||||
)
|
||||
Reference in a new issue