gui-for-ffmpeg/helper/path_separator.go

9 lines
100 B
Go

//go:build !windows
// +build !windows
package helper
func PathSeparator() string {
return "/"
}