mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-13 06:52:24 +00:00
14 lines
555 B
Cheetah
14 lines
555 B
Cheetah
package enry
|
|
|
|
// CODE GENERATED AUTOMATICALLY WITH gopkg.in/src-d/enry.v1/internal/code-generator
|
|
// THIS FILE SHOULD NOT BE EDITED BY HAND
|
|
// Extracted from github/linguist commit: {{ getCommit }}
|
|
|
|
// languagesByAlias keeps alias for different languages and use the name of the languages as an alias too.
|
|
// All the keys (alias or not) are written in lower case and the whitespaces has been replaced by underscores.
|
|
var languagesByAlias = map[string]string{
|
|
{{range $alias, $language := . -}}
|
|
"{{ $alias }}": {{ printf "%q" $language -}},
|
|
{{end -}}
|
|
}
|