summaryrefslogtreecommitdiff
path: root/pkg/ps/define/types.go
blob: 878653c3a350165b972ec75a498c454cf42b5d3d (plain)
1
2
3
4
5
6
7
8
package define

// ContainerSize holds the size of the container's root filesystem and top
// read-write layer.
type ContainerSize struct {
	RootFsSize int64 `json:"rootFsSize"`
	RwSize     int64 `json:"rwSize"`
}