gui-for-ffmpeg/helper/path_separator.go

9 lines
100 B
Go
Raw Normal View History

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