https://github.com/grafana/grafana
Raw File
Tip revision: 18fc6b11682a73799bfdfb55c925d8261487de48 authored by Gilles De Mey on 18 July 2023, 16:06:15 UTC
initial commit
Tip revision: 18fc6b1
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