mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-09-15 21:00:27 +00:00
13 lines
173 B
Go
13 lines
173 B
Go
//go:build windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
func normalizeRestrictedPath(path string) string {
|
|
return strings.ToLower(filepath.Clean(path))
|
|
}
|