https://github.com/grafana/grafana
Raw File
Tip revision: 1a5200b4bd339541fb84a624acb92d869c8089a2 authored by Adela Almasan on 31 March 2023, 19:28:43 UTC
time regions
Tip revision: 1a5200b
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