summaryrefslogtreecommitdiff
path: root/libpod/stats_unsupported.go
blob: 940be156cb3c21a7b4aa687f5cba771ff3eb903b (plain)
1
2
3
4
5
6
7
8
9
10
// +build !linux

package libpod

import "github.com/containers/libpod/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
}