mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-24 01:07:53 +00:00
8 lines
229 B
Go
8 lines
229 B
Go
// +build !linux
|
|
|
|
package libpod
|
|
|
|
// GetContainerStats gets the running stats for a given container
|
|
func (c *Container) GetContainerStats(previousStats *ContainerStats) (*ContainerStats, error) {
|
|
return nil, ErrOSNotSupported
|
|
}
|