intial release

This commit is contained in:
nezu 2024-10-20 23:04:38 +02:00
parent abbfcabe8d
commit dd7e923bff
11 changed files with 1234 additions and 0 deletions

17
platform/linux.go Normal file
View file

@ -0,0 +1,17 @@
//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 ""
}