gui-for-ffmpeg/src/helper/helper.go

11 lines
127 B
Go
Raw Normal View History

package helper
import "runtime"
func PathSeparator() string {
if runtime.GOOS == "windows" {
return "\\"
}
return "/"
}