Merge pull request #2426 from iwankgb/missing_struct_tags

Adding missing struct tags for JSON consistency
This commit is contained in:
David Ashpole 2020-03-12 10:11:56 -07:00 committed by GitHub
commit 9251e327b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -213,10 +213,10 @@ type MachineInfo struct {
type MemoryInfo struct {
// The amount of memory (in bytes).
Capacity uint64
Capacity uint64 `json:"capacity"`
// Number of memory DIMMs.
DimmCount uint
DimmCount uint `json:"dimm_count"`
}
type VersionInfo struct {