Revision 4b1b0344e402093b7e5b203e7cbb94c080fc51f4 authored by Sven Grossmann on 18 October 2022, 13:26:17 UTC, committed by GitHub on 18 October 2022, 13:26:17 UTC
1 parent 9c51474
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 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