https://github.com/grafana/grafana
Raw File
Tip revision: 17a0e6763d62ab04cee5b9c555c90d879ef159ab authored by Armand Grillet on 12 March 2024, 11:02:03 UTC
Reset feature toggles files as generated automatically
Tip revision: 17a0e67
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
var CueSchemaFS embed.FS
back to top