mirror of
https://github.com/wagoodman/dive
synced 2026-03-15 14:55:49 +01:00
8 lines
179 B
Go
8 lines
179 B
Go
package export
|
|
|
|
type layer struct {
|
|
Index int `json:"index"`
|
|
DigestID string `json:"digestId"`
|
|
SizeBytes uint64 `json:"sizeBytes"`
|
|
Command string `json:"command"`
|
|
}
|