https://github.com/grafana/grafana
Raw File
Tip revision: 579554a2af1d9ec7402e3e60ae404e1ceffe7ab9 authored by Brendan O'Handley on 02 February 2024, 05:01:08 UTC
fix e2e test
Tip revision: 579554a
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