https://github.com/grafana/grafana
Raw File
Tip revision: 3056ba6ff1fb3cddaa7da6ba7f52171a4adf13a2 authored by Tom Ratcliffe on 18 April 2024, 07:10:08 UTC
Add KBarProvider back into tests that still require it
Tip revision: 3056ba6
embed.go
package grafana

import (
	"embed"
)

// CueSchemaFS embeds all schema-related CUE files in the Grafana project.
//
//go:embed cue.mod/module.cue
var CueSchemaFS embed.FS
back to top