Revision ec163a94d9ca7af1d9dae55e8c9d163f4eee252f authored by Ashley Harrison on 28 April 2023, 16:34:17 UTC, committed by Ashley Harrison on 28 April 2023, 16:34:17 UTC
1 parent 5aefa29
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