10 lines
209 B
Go
10 lines
209 B
Go
package export
|
|
|
|
type layer struct {
|
|
Index int `json:"index"`
|
|
ID string `json:"id"`
|
|
DigestID string `json:"digestId"`
|
|
SizeBytes uint64 `json:"sizeBytes"`
|
|
Command string `json:"command"`
|
|
}
|