podman/libpod/stats_unsupported.go

9 lines
229 B
Go
Raw Normal View History

// +build !linux
package libpod
// GetContainerStats gets the running stats for a given container
func (c *Container) GetContainerStats(previousStats *ContainerStats) (*ContainerStats, error) {
return nil, ErrOSNotSupported
}