mirror of
https://github.com/containers/podman.git
synced 2025-05-21 09:05:56 +08:00
9 lines
229 B
Go
9 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
|
|
}
|