8f29450594
* Remove Raw references * Remove more raws * Re-generate files * Remove raw folder from veneer * Fix import * Fix lint * Bring back raw folder in grafana-schema * Another lint * Remove use of "Structured" word in kinds * Delete unused function and remove some structured words * Bunch more removals of structured name Co-authored-by: sam boyer <sdboyer@grafana.com>
24 lines
323 B
CUE
24 lines
323 B
CUE
package grafanaplugin
|
|
|
|
import (
|
|
"github.com/grafana/thema"
|
|
"github.com/grafana/grafana/kinds/dashboard:kind"
|
|
)
|
|
|
|
_dummy: coremodel.slots
|
|
|
|
Panel: thema.#Lineage & {
|
|
name: "disallowed_cue_import"
|
|
seqs: [
|
|
{
|
|
schemas: [
|
|
{
|
|
PanelOptions: {
|
|
foo: string
|
|
} @cuetsy(kind="interface")
|
|
},
|
|
]
|
|
},
|
|
]
|
|
}
|