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