kittenipc/kitcom/internal/tsgo/vfs/osvfs/realpath_other.go
2025-10-15 10:12:44 +03:00

12 lines
148 B
Go

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