https://github.com/grafana/grafana
Raw File
Tip revision: fea136c3e072ba8109fd29fcdc61605f4278d887 authored by brendamuir on 16 June 2022, 09:34:25 UTC
adds create alerts to managed rule page
Tip revision: fea136c
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