summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/icrowley/fake/currencies.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/icrowley/fake/currencies.go')
-rw-r--r--vendor/github.com/icrowley/fake/currencies.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/github.com/icrowley/fake/currencies.go b/vendor/github.com/icrowley/fake/currencies.go
new file mode 100644
index 000000000..b85c94363
--- /dev/null
+++ b/vendor/github.com/icrowley/fake/currencies.go
@@ -0,0 +1,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)
+}