mirror of
https://github.com/containers/podman.git
synced 2025-05-20 08:36:23 +08:00
11 lines
303 B
Go
11 lines
303 B
Go
// +build !linux
|
|
|
|
package libpod
|
|
|
|
import "github.com/containers/libpod/libpod/define"
|
|
|
|
// GetContainerStats gets the running stats for a given container
|
|
func (c *Container) GetContainerStats(previousStats *define.ContainerStats) (*define.ContainerStats, error) {
|
|
return nil, define.ErrOSNotSupported
|
|
}
|