blob: 6d21ae8f2bae0f867caa33c7146d2814fc16d1e0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// +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
}
|