mirror of
https://github.com/docker/docs.git
synced 2026-03-31 08:18:55 +07:00
12 lines
153 B
Go
12 lines
153 B
Go
// +build !windows
|
|
|
|
package symlink
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
func evalSymlinks(path string) (string, error) {
|
|
return filepath.EvalSymlinks(path)
|
|
}
|