9 lines
167 B
Go
9 lines
167 B
Go
|
package libcontainer
|
||
|
|
||
|
import "github.com/opencontainers/runc/libcontainer/cgroups"
|
||
|
|
||
|
type Stats struct {
|
||
|
Interfaces []*NetworkInterface
|
||
|
CgroupStats *cgroups.Stats
|
||
|
}
|