1
0

reflection work so far...

This commit is contained in:
brent saner
2025-01-25 16:11:19 -05:00
parent bf887ce948
commit 1471dc29ed
31 changed files with 2240 additions and 150 deletions

View File

@@ -0,0 +1,24 @@
{{- /*gotype: r00t2.io/cryptparse/internal/constmap.ParamConsts*/ -}}
package cryptparse
/*
THIS FILE IS AUTOMATICALLY GENERATED.
DO NOT EDIT.
SEE internal/constmap/ FOR DETAILS.
*/
var (
// tlsUriParamStrMap contains a map of the constant string *name* of a tlsUriParam as mapped to its *value* (at time of generation).
tlsUriParamStrMap map[string]string = map[string]string{
{{- range $p := . }}
{{ printf "%#v" $p.ConstName }}: {{ printf "%#v" $p.UriParamName }},
{{- end }}
}
// tlsUriStrParamMap contains a map of the *value* (at time of generation) of tlsUriParam constants to the constant string *name*.
tlsUriStrParamMap map[string]string = map[string]string{
{{- range $p := . }}
{{ printf "%#v" $p.UriParamName }}: {{ printf "%#v" $p.ConstName }},
{{- end }}
}
)