BudgetBuddy/money/currency.go

8 lines
91 B
Go

package money
type Currency string
const (
USD Currency = "USD"
CAD = "CAD"
)