blob: e88b88bb1fc2c867954b96c977b8f6409119eeec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//go:build !linux && !freebsd
// +build !linux,!freebsd
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")
}
|