https://github.com/grafana/grafana
Raw File
Tip revision: 875e68afb6700db4b5b42b06f9881c8d580cfd02 authored by Gilles De Mey on 08 June 2023, 09:26:45 UTC
cleanup datasource.tsx
Tip revision: 875e68a
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