blob: 749a8bf4911bd4ed5df23404275d69014b44da3e (
plain)
1
2
3
4
5
6
7
8
9
10
|
// +build !linux
package libpod
import "github.com/containers/podman/v2/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
}
|