https://github.com/grafana/grafana
Raw File
Tip revision: bd5b43ab2ff693a2e2d4349339ba2e2c0aee5a63 authored by lean.dev on 29 September 2022, 17:24:38 UTC
Docs: Update Public Dashboard documentation (#56035)
Tip revision: bd5b43a
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