https://github.com/grafana/grafana
Raw File
Tip revision: 8fd608926666e7010e2e9f4a080748a5a7adadd8 authored by Brendan O'Handley on 01 February 2024, 16:38:28 UTC
Merge remote-tracking branch 'origin' into bohandley/prom-library-sanity-check-for-merging-main-into-branch
Tip revision: 8fd6089
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