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