Revision b998105a31f54feb43bb05ccd5f27d767952ebfd authored by Torkel Ödegaard on 15 November 2023, 10:18:21 UTC, committed by grafana-delivery-bot[bot] on 15 November 2023, 10:19:34 UTC
* Variables: Add support for aliasIDs to datasource variables

* remove file

(cherry picked from commit f7e5689305f128be040fcee6cf0049ac2aeb6abd)
1 parent a36ead1
Raw File
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