https://github.com/grafana/grafana
Raw File
Tip revision: 3b261faacb8bd39bc2d7a06c8d52fde28f3b911c authored by grafanabot on 30 August 2022, 18:15:16 UTC
"Release: Updated versions in package to 8.5.12"
Tip revision: 3b261fa
embed.go
package grafana

import (
	"embed"
)

// CoreSchema embeds all core CUE files, which live in packages/grafana-schema/src
//
//go:embed cue.mod cue packages/grafana-schema/src/schema/*.cue packages/grafana-schema/src/scuemata/*/*.cue packages/grafana-schema/src/scuemata/*/*/*.cue
var CoreSchema embed.FS

// PluginSchema embeds all expected plugin CUE files and plugin metadata from
// within the public/app/plugins subdirectory.
//
//go:embed public/app/plugins/*/*/*.cue public/app/plugins/*/*/plugin.json
var PluginSchema embed.FS
back to top