Revision 0f9e6dda2d130691968dc704814a99d6444d69dd authored by Torkel Ödegaard on 17 October 2022, 12:19:29 UTC, committed by GitHub on 17 October 2022, 12:19:29 UTC
1 parent 3f26ffd
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