https://github.com/grafana/grafana
Raw File
Tip revision: ebc9fe650edcb34fa2de825c8f2c1cc132ae0159 authored by Ashley Harrison on 13 March 2024, 15:05:22 UTC
tweaking things
Tip revision: ebc9fe6
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