https://github.com/grafana/grafana
Raw File
Tip revision: 9d62c7b28a2a81b2e6d3ff516b26e70d2ba1f238 authored by grafanabot on 11 October 2022, 14:18:32 UTC
"Release: Updated versions in package to 9.2.1"
Tip revision: 9d62c7b
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