currency.tmpl 179 B

1234567891011
  1. {{ define "currencies" }}
  2. package currency
  3. // Type is the currency type associated with the locales currency enum
  4. type Type int
  5. // locale currencies
  6. const (
  7. {{ . }}
  8. )
  9. {{ end }}