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