Revision 5af36e48ba1d7270311812363b5dff85d255f2cb authored by Ashley Harrison on 13 October 2022, 07:56:36 UTC, committed by GitHub on 13 October 2022, 07:56:36 UTC
1 parent cc27214
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