Welcome to mirror list, hosted at ThFree Co, Russian Federation.

currency.tmpl « cmd - github.com/gohugoio/locales.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af51167fb09bd5a124aa5b4ad8b8fdf325518ab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "currencies" }}
package currency

// Currency is the type associated with the locales currency enum
type Currency int

// locale currencies
const (
	{{ . }}
)
{{ end }}