Revision 27c36155f5c91896586e9658cc17110ffcf16847 authored by suntala on 26 July 2023, 14:58:16 UTC, committed by suntala on 26 July 2023, 14:58:16 UTC
1 parent 75891ac
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