https://github.com/grafana/grafana
Raw File
Tip revision: 1b360326b756de8f948775a90e383924efa84c40 authored by Artur Wierzbicki on 08 July 2022, 18:46:17 UTC
add recover() to index rebuild
Tip revision: 1b36032
embed.go
package grafana

import (
	"embed"
)

// CueSchemaFS embeds all schema-related CUE files in the Grafana project.
//
//go:embed cue.mod packages/grafana-schema/src/schema/*.cue public/app/plugins/*/*/*.cue public/app/plugins/*/*/plugin.json
var CueSchemaFS embed.FS
back to top