15 lines
346 B
Cheetah
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 }}
|
|
}
|