Revision 7d18460d8fe2c5294df9e416fa4f60de1fc3e3fe authored by Ashley Harrison on 12 October 2022, 15:33:12 UTC, committed by GitHub on 12 October 2022, 15:33:12 UTC
* convert MetricSelect test to RTL

* remove type param
1 parent 26e7228
Raw File
embed.go
package grafana

import (
	"embed"
)

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