github.com/Prakhar-Agarwal-byte/moby@v0.0.0-20231027092010-a14e3e8ab87e/pkg/archive/copy_unix.go (about) 1 //go:build !windows 2 3 package archive // import "github.com/Prakhar-Agarwal-byte/moby/pkg/archive" 4 5 import ( 6 "path/filepath" 7 ) 8 9 func normalizePath(path string) string { 10 return filepath.ToSlash(path) 11 }