10 lines
169 B
Go
10 lines
169 B
Go
//go:build !windows && !linux && !darwin
|
|
|
|
package nativepath
|
|
|
|
import "path/filepath"
|
|
|
|
func Realpath(path string) (string, error) {
|
|
return filepath.EvalSymlinks(path)
|
|
}
|