blob: b85c943638cc1735cfcf57e326002275f4bd5ceb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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)
}
|