11 lines
127 B
Go
11 lines
127 B
Go
|
package helper
|
||
|
|
||
|
import "runtime"
|
||
|
|
||
|
func PathSeparator() string {
|
||
|
if runtime.GOOS == "windows" {
|
||
|
return "\\"
|
||
|
}
|
||
|
return "/"
|
||
|
}
|