Add Windows platform integration scaffolding

This commit is contained in:
Brandon McGinty (chatgpt)
2026-08-10 12:36:47 -04:00
committed by Brandon McGinty
parent fab4fd50d2
commit 9c487c2586
9 changed files with 138 additions and 66 deletions
+9
View File
@@ -0,0 +1,9 @@
//go:build windows
package main
import "os/exec"
func runNotification(command string) {
_ = exec.Command("cmd.exe", "/C", command).Run()
}