mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-23 16:57:51 +00:00
10 lines
306 B
Go
10 lines
306 B
Go
// +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
|
|
}
|