https://github.com/grafana/grafana
Raw File
Tip revision: 0f95d633a5f85c307bdb34a9f6efe24ce25d472c authored by Ryan McKinley on 06 May 2023, 14:35:50 UTC
Docs: Add DataFrame notice to plugin migration guide (#67947)
Tip revision: 0f95d63
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