lychee-slicer/platform/linux.go
2024-10-20 23:04:38 +02:00

17 lines
332 B
Go

//go:build linux
package platform
func IsWindowsRetryable(_ error) bool {
return false
}
func WindowsRename(from, to string) error {
panic("not implemented")
}
func FindProgram() string {
// who knows, could be a million things, including this executable itself
// let the user/packager decide where to find it
return ""
}