Export fields on SettingMgmtXSshKeys (#41)

This commit is contained in:
Kurt McAlpine
2021-07-05 16:51:44 +12:00
committed by GitHub
parent f06d3401ae
commit 7081791f4f
2 changed files with 12 additions and 12 deletions

View File

@@ -63,12 +63,12 @@ func (dst *SettingMgmt) UnmarshalJSON(b []byte) error {
}
type SettingMgmtXSshKeys struct {
comment string `json:"comment"`
date string `json:"date"`
fingerprint string `json:"fingerprint"`
key string `json:"key"`
keyType string `json:"type"`
name string `json:"name"`
Comment string `json:"comment"`
Date string `json:"date"`
Fingerprint string `json:"fingerprint"`
Key string `json:"key"`
KeyType string `json:"type"`
Name string `json:"name"`
}
func (dst *SettingMgmtXSshKeys) UnmarshalJSON(b []byte) error {