Files
grafana/pkg/codegen/tmpl/core_resource.tmpl
2023-04-27 23:32:38 +03:00

8 lines
215 B
Cheetah

package {{ .PackageName }}
// Resource is the wire representation of {{ .KindName }}. (TODO be better)
type Resource struct {
{{- range .SubresourceNames }}
{{ . }} {{ . }} `json:"{{ . | ToLower }}"`{{end}}
}