https://github.com/grafana/grafana
Raw File
Tip revision: 566ed826c322726bebf692623b2e1e65e4b9f39e authored by Christopher Lord on 26 June 2023, 16:53:45 UTC
Nav: Grafana Incident's sidebar navigation should be plural (#64553)
Tip revision: 566ed82
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 pkg/plugins/*/*.cue
var CueSchemaFS embed.FS
back to top