Revision a9c0afcc1fd09418953c9afb343cd97259c246f7 authored by Nathan Marrs on 11 October 2022, 13:34:49 UTC, committed by GitHub on 11 October 2022, 13:34:49 UTC
Co-authored-by: Adela Almasan <adela.almasan@grafana.com>
1 parent 5cebb94
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