aboutsummaryrefslogtreecommitdiff
path: root/libpod/container_stat_unsupported.go
blob: 2f1acd44d38a9fc7893f86029bf528c8f2b08043 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//go:build !linux
// +build !linux

package libpod

import (
	"errors"

	"github.com/containers/podman/v4/libpod/define"
)

func (c *Container) stat(containerMountPoint string, containerPath string) (*define.FileInfo, string, string, error) {
	return nil, "", "", errors.New("Containers stat not supported on this platform")
}