WIP: panel functions added to the api.

This commit is contained in:
Jesse Malotaux 2025-04-05 23:19:26 +02:00
parent 2f391bce4e
commit 022b11c81f
4 changed files with 111 additions and 0 deletions

View file

@ -0,0 +1,16 @@
package structs
type PanelJSON struct {
Name string `json:"name"`
Description string `json:"description"`
AspectRatio string `json:"aspectRatio"`
Macros map[string]string `json:"macros"`
}
type PanelInfo struct {
Name string `json:"name"`
Description string `json:"description"`
AspectRatio string `json:"aspectRatio"`
Macros map[string]string `json:"macros"`
Thumb string `json:"thumb"`
}