git-bug/vendor/github.com/icrowley/fake/currencies.go
2018-08-16 18:22:00 +02:00

12 lines
235 B
Go

package fake
// Currency generates currency name
func Currency() string {
return lookup(lang, "currencies", true)
}
// CurrencyCode generates currency code
func CurrencyCode() string {
return lookup(lang, "currency_codes", true)
}