https://github.com/grafana/grafana
Raw File
Tip revision: 568e6642c55a3f8168d3f75bcafbac01d2a944b7 authored by arunkg2787 on 25 July 2023, 09:16:58 UTC
Update configure-team-sync.md
Tip revision: 568e664
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