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