Revision 26bb1394709d8c26b21b33aeb080f83132e37e7f authored by Matt on 12 October 2022, 08:50:28 UTC, committed by GitHub on 12 October 2022, 08:50:28 UTC
1 parent 45edce9
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