https://github.com/grafana/grafana
Raw File
Tip revision: 0e384f7e6f00bcb6e440f22078b75bf19fe1a95f authored by Leon Sorokin on 28 March 2023, 22:16:24 UTC
HeatMap: Sort y buckets when all bucket names are numeric (#65322)
Tip revision: 0e384f7
embed.go
package grafana

import (
	"embed"
)

// CueSchemaFS embeds all schema-related CUE files in the Grafana project.
//
//go:embed cue.mod/module.cue kinds/*.cue kinds/*/*.cue packages/grafana-schema/src/common/*.cue public/app/plugins/*/*/*.cue public/app/plugins/*/*/plugin.json pkg/kindsys/*.cue pkg/plugins/*/*.cue
var CueSchemaFS embed.FS
back to top