Revision 83aa006c98174c78a4827f7a3830ba6387d5d7e1 authored by Armand Grillet on 13 October 2022, 13:09:49 UTC, committed by GitHub on 13 October 2022, 13:09:49 UTC
This link has been asked many times and is only viewable on old docs pages.
1 parent 9996dbd
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