Initial D-InSAR bundle restore tool

This commit is contained in:
Harmon
2026-05-11 10:43:04 +08:00
commit e595231e04
8 changed files with 2082 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
//go:build !windows
package main
import "errors"
func runGUI() error {
return errors.New("GUI mode is only supported on Windows")
}