Revision f4a3400a9cd55c766b5a326ca30d1c23664f1a23 authored by Garrett Guillotte on 11 October 2022, 18:39:52 UTC, committed by GitHub on 11 October 2022, 18:39:52 UTC
1 parent abd7b7d
Raw File
embed.go
package grafana

import (
	"embed"
)

// CueSchemaFS embeds all schema-related CUE files in the Grafana project.
//
//go:embed cue.mod/module.cue packages/grafana-schema/src/schema/*.cue public/app/plugins/*/*/*.cue public/app/plugins/*/*/plugin.json pkg/framework/coremodel/*.cue
var CueSchemaFS embed.FS
back to top