Files
grafana/apps/folder/kinds/folder.cue
2025-07-21 13:32:15 -04:00

27 lines
392 B
CUE

package folder
folder: {
kind: "Folder"
pluralName: "Folders"
current: "v1beta1"
versions: {
"v1beta1": {
codegen: {
ts: {
enabled: false // Not sure if it should be enabled or not, currently it is.
}
go: {
enabled: true
}
}
schema: {
spec: {
title: string
description?: string
}
status: {} // nothing
}
}
}
}