mirror of
https://github.com/vbatts/srvdav.git
synced 2025-02-18 01:57:55 +00:00
11 lines
157 B
Go
11 lines
157 B
Go
|
package lib
|
||
|
|
||
|
import (
|
||
|
"path/filepath"
|
||
|
)
|
||
|
|
||
|
func ToSlashPath(path string) string {
|
||
|
cleanPath := filepath.Clean(path)
|
||
|
return filepath.ToSlash(cleanPath)
|
||
|
}
|