add tags to cluster id file struct

This commit is contained in:
Leonard Cohnen 2022-09-02 20:19:54 +02:00 committed by 3u13r
parent 7b00005ed6
commit e80948a263

View File

@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only
package cmd
type clusterIDsFile struct {
ClusterID string
OwnerID string
IP string
ClusterID string `json:"clusterID,omitempty"`
OwnerID string `json:"ownerID,omitempty"`
IP string `json:"ip,omitempty"`
}