https://github.com/grafana/grafana
Raw File
Tip revision: 0613d857d09f5344d258aae5b58df14778567e11 authored by Victor Marin on 18 January 2023, 14:19:11 UTC
Fix todolist bugs
Tip revision: 0613d85
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/schema/*.cue public/app/plugins/*/*/*.cue public/app/plugins/*/*/plugin.json pkg/kindsys/*.cue pkg/plugins/plugindef/*.cue
var CueSchemaFS embed.FS
back to top