Revision 190d2351898db2e19766c3387e057c36277d9046 authored by tonypowa on 02 August 2023, 20:26:16 UTC, committed by grafana-delivery-bot[bot] on 02 August 2023, 20:27:41 UTC
updated endpoint authentication

(cherry picked from commit 956b865a2ecb134aff55f1a8dda45655470201df)
1 parent 3cdd6c5
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