https://github.com/grafana/grafana
Raw File
Tip revision: 259ecbfbda19a738e9758f93734c1a147cb146d2 authored by Jo on 31 July 2023, 08:41:37 UTC
Auth: Fix static test fake (#72514)
Tip revision: 259ecbf
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