mirror of
https://github.com/wagoodman/dive
synced 2026-03-14 22:35:50 +01:00
8 lines
267 B
Go
8 lines
267 B
Go
package export
|
|
|
|
type image struct {
|
|
SizeBytes uint64 `json:"sizeBytes"`
|
|
InefficientBytes uint64 `json:"inefficientBytes"`
|
|
EfficiencyScore float64 `json:"efficiencyScore"`
|
|
InefficientFiles []fileReference `json:"fileReference"`
|
|
}
|