Codebase list golang-github-icrowley-fake / scrub-obsolete/main currencies.go
scrub-obsolete/main

Tree @scrub-obsolete/main (Download .tar.gz)

currencies.go @scrub-obsolete/mainraw · history · blame

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)
}