mirror of
https://github.com/gabehf/BudgetBuddy.git
synced 2026-03-08 23:18:15 -07:00
8 lines
91 B
Go
8 lines
91 B
Go
package money
|
|
|
|
type Currency string
|
|
|
|
const (
|
|
USD Currency = "USD"
|
|
CAD = "CAD"
|
|
)
|