9 lines
99 B
Go
9 lines
99 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package helper
|
|
|
|
func PathSeparator() string {
|
|
return "\\"
|
|
}
|