https://github.com/grafana/grafana
Raw File
Tip revision: d3db4814dca2545c34443b368b4154d3014418ec authored by Brendan O'Handley on 24 April 2023, 14:08:48 UTC
remove part of flaky test
Tip revision: d3db481
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