https://github.com/grafana/grafana
Raw File
Tip revision: 7e68894c93e4d93b9037c932757a343583918c93 authored by linoman on 21 February 2024, 14:40:18 UTC
OAuth: Improve domain validation (#83110)
Tip revision: 7e68894
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