containerd/containerd/vendor/github.com/docker/docker/pkg/symlink/fs_unix.go

12 lines
153 B
Go

// +build !windows
package symlink
import (
"path/filepath"
)
func evalSymlinks(path string) (string, error) {
return filepath.EvalSymlinks(path)
}