Revision 7b4b542144196f3ce312116e52cb16d5d63ac582 authored by bohandley on 18 April 2023, 21:42:08 UTC, committed by bohandley on 18 April 2023, 21:42:08 UTC
1 parent f612a72
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 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