zones: change toml tags to match yaml and json output

Signed-off-by: Alejandro Mery <amery@jpi.io>
This commit is contained in:
2023-08-25 16:46:23 +00:00
parent 45b25c63d4
commit 20484a5061
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -14,8 +14,8 @@ import (
type Zone struct {
zones *Zones
ID int
Name string
ID int `toml:"id"`
Name string `toml:"name"`
Machines []*Machine `toml:"machines"`
}