Revision 72b9555487ba00c1c3c8212dfb6af3a968c036a9 authored by Julien Duchesne on 12 October 2022, 11:07:13 UTC, committed by GitHub on 12 October 2022, 11:07:13 UTC
:facepalm:

Co-authored-by: dsotirakis <dimitrios.sotirakis@grafana.com>
1 parent 719769e
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