cmd: add/remove route

This commit is contained in:
Ilia Denisov
2026-01-06 07:16:27 +02:00
parent 5f3a416abd
commit 0b8c53cedf
5 changed files with 218 additions and 2 deletions
+2 -1
View File
@@ -33,7 +33,8 @@ type PlanetReport struct {
}
type Planet struct {
Owner uuid.UUID `json:"owner"` // FIXME: nil value when no owner
Owner uuid.UUID `json:"owner"` // FIXME: nil value when no owner
Route map[RouteType]uint `json:"route"`
PlanetReport
}