refactor: added tags to power struct

This commit is contained in:
David Allen 2025-06-19 16:53:43 -06:00
parent f12a6c6713
commit cb1d90b840
Signed by: towk
GPG key ID: 0430CDBE22619155

View file

@ -65,9 +65,9 @@ type Links struct {
}
type Power struct {
State string
Mode string
RestorePolicy string
State string `json:"state,omitempty"`
Mode string `json:"mode,omitempty"`
RestorePolicy string `json:"restore_policy"`
}
type InventoryDetail struct {