* add /meta and /metas APIs * wrapped storage route * format file * fix switch statement lint issue * fix plugininstaller test --------- Co-authored-by: Todd Treece <todd.treece@grafana.com>
16 lines
213 B
CUE
16 lines
213 B
CUE
package plugins
|
|
|
|
pluginV0Alpha1: {
|
|
kind: "Plugin"
|
|
plural: "plugins"
|
|
scope: "Namespaced"
|
|
schema: {
|
|
spec: {
|
|
id: string
|
|
version: string
|
|
url?: string
|
|
class: "core" | "external"
|
|
}
|
|
}
|
|
}
|