Inventory: restructure folders

This commit is contained in:
Johannes Kirschbauer
2024-06-26 15:16:20 +02:00
parent 3777a4cf02
commit 2535fdcb12
9 changed files with 11 additions and 15 deletions

View File

@@ -0,0 +1,23 @@
package inventory
import (
"clan.lol/inventory/schema"
)
@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
schema.#service
// // A map of machines
schema.#machine
}