https://github.com/grafana/grafana
Raw File
Tip revision: 84811c375989891b585517b3f05ba0294cda89d4 authored by Artur Wierzbicki on 02 September 2022, 16:33:05 UTC
abc
Tip revision: 84811c3
embed.go
package grafana

import (
	"embed"
)

// CueSchemaFS embeds all schema-related CUE files in the Grafana project.
//
//go:embed cue.mod/module.cue packages/grafana-schema/src/schema/*.cue public/app/plugins/*/*/*.cue public/app/plugins/*/*/plugin.json pkg/framework/coremodel/*.cue
var CueSchemaFS embed.FS
back to top