mirror of
https://github.com/x-motemen/ghq.git
synced 2026-09-10 07:26:27 -04:00
14 lines
208 B
Go
14 lines
208 B
Go
//go:build !windows
|
|
|
|
package main
|
|
|
|
import "path/filepath"
|
|
|
|
func toFullPath(s string) (string, error) {
|
|
return s, nil
|
|
}
|
|
|
|
func evalSymlinks(path string) (string, error) {
|
|
return filepath.EvalSymlinks(path)
|
|
}
|