2021-04-08 03:11:11 -05:00
|
|
|
package grafana
|
|
|
|
|
|
|
|
import (
|
|
|
|
"embed"
|
|
|
|
)
|
|
|
|
|
2021-08-25 05:55:04 -05:00
|
|
|
// CoreSchema embeds all core CUE files, which live in packages/grafana-schema/src
|
2021-04-08 03:11:11 -05:00
|
|
|
//
|
2021-09-17 15:17:55 -05:00
|
|
|
//go:embed cue.mod cue packages/grafana-schema/src/schema/*.cue packages/grafana-schema/src/scuemata/*/*.cue packages/grafana-schema/src/scuemata/*/*/*.cue
|
2021-04-08 03:11:11 -05:00
|
|
|
var CoreSchema embed.FS
|
|
|
|
|
2021-09-17 15:17:55 -05:00
|
|
|
// PluginSchema embeds all expected plugin CUE files and plugin metadata from
|
|
|
|
// within the public/app/plugins subdirectory.
|
|
|
|
//
|
2021-04-08 03:11:11 -05:00
|
|
|
//go:embed public/app/plugins/*/*/*.cue public/app/plugins/*/*/plugin.json
|
2021-09-17 15:17:55 -05:00
|
|
|
var PluginSchema embed.FS
|