https://github.com/grafana/grafana
Raw File
Tip revision: 54acfb6d3b45062239fa2faa8a4e50d38ac0a7f9 authored by Alex Weaver on 17 February 2022, 23:46:04 UTC
Integrate remaining routes
Tip revision: 54acfb6
embed.go
package grafana

import (
	"embed"
)

// CoreSchema embeds all core CUE files, which live in packages/grafana-schema/src
//
//go:embed cue.mod cue packages/grafana-schema/src/schema/*.cue packages/grafana-schema/src/scuemata/*/*.cue packages/grafana-schema/src/scuemata/*/*/*.cue
var CoreSchema embed.FS

// PluginSchema embeds all expected plugin CUE files and plugin metadata from
// within the public/app/plugins subdirectory.
//
//go:embed public/app/plugins/*/*/*.cue public/app/plugins/*/*/plugin.json
var PluginSchema embed.FS
back to top