12 lines
148 B
Go
12 lines
148 B
Go
//go:build !windows
|
|
|
|
package osvfs
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
func realpath(path string) (string, error) {
|
|
return filepath.EvalSymlinks(path)
|
|
}
|