add windows support

This commit is contained in:
2025-06-21 09:31:23 -07:00
parent a24eb6903f
commit 6199f0865e
8 changed files with 112 additions and 29 deletions

8
config_unix.go Normal file
View File

@ -0,0 +1,8 @@
//go:build linux || darwin
package main
func makeLink(src, dst string) error {
// Noop on unix
return nil
}