https://github.com/grafana/grafana
Raw File
Tip revision: 3f7aa0e93abfed219a1fc97f837e7189a51cc238 authored by Tomica-G on 13 July 2023, 15:25:51 UTC
Update _index.md - Add a note about server admin on cloud
Tip revision: 3f7aa0e
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