Revision 96e9e807396b600c3325f4d3580eeef0710f6050 authored by Galen Kistler on 03 April 2023, 14:07:17 UTC, committed by GitHub on 03 April 2023, 14:07:17 UTC
Add cache control headers and range snapping to Prometheus resource API calls.
1 parent 008bf14
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