authelia/cmd/authelia-gen/templates/config_keys.go.tmpl
James Elliott 5304178165
ci: add dedicated authelia-gen command (#3463)
Adds a dedicated authelia code/doc gen command.
2022-06-14 22:40:00 +10:00

15 lines
346 B
Cheetah

// Code generated by go generate. DO NOT EDIT.
//
// Run the following command to generate this file:
// go run ./cmd/authelia-gen code keys
//
package {{ .Package }}
// Keys is a list of valid schema keys detected by reflecting over a schema.Configuration struct.
var Keys = []string{
{{- range .Keys }}
{{ printf "%q" . }},
{{- end }}
}