blob: 7117413eb085444b66342922150764b1dc09b09c (
plain)
1
2
3
4
5
6
7
8
|
// +build !linux
package libpod
// GetContainerStats gets the running stats for a given container
func (c *Container) GetContainerStats(previousStats *ContainerStats) (*ContainerStats, error) {
return nil, ErrOSNotSupported
}
|