https://github.com/grafana/grafana
Raw File
Tip revision: 4425ed46ac160599fe84fe46e850ad3a77ffdfe7 authored by ying-jeanne on 24 August 2022, 14:59:06 UTC
fix the event attributes (#54117)
Tip revision: 4425ed4
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