Files
clan-core/inventory/src/root.cue
2024-06-19 09:47:13 +02:00

25 lines
409 B
CUE

package inventory
import (
"clan.lol/inventory/services"
"clan.lol/inventory/machines"
)
@jsonschema(schema="http://json-schema.org/schema#")
#Root: {
meta: {
// A name of the clan (primarily shown by the UI)
name: string
// A description of the clan
description?: string
// The icon path
icon?: string
}
// A map of services
services.#service
// A map of machines
machines.#machine
}