https://github.com/grafana/grafana
Raw File
Tip revision: e7f7d1e3cc382b3a1ba4d858e38001bde81fb8aa authored by MayraOyola on 28 April 2023, 19:57:15 UTC
Add a Mimir link to the Prom docs
Tip revision: e7f7d1e
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