feat: add backend configuration and windows utilities, and initialize frontend dependencies

This commit is contained in:
jahruz67
2026-05-15 10:39:30 -07:00
parent e645102d3a
commit b0f4ea3e6f
43 changed files with 931 additions and 541 deletions
+17 -1
View File
@@ -5,6 +5,22 @@ package main
// secondInstanceWake is unused on Windows (second-instance UX not wired here).
var secondInstanceWake = make(chan struct{}, 8)
func tryNotifyRunningInstanceToShow() {}
// secondInstanceCommand is unused on Windows (second-instance UX not wired here).
var secondInstanceCommand = make(chan byte, 16)
const (
instanceCmdShow byte = 1
instanceCmdStart byte = 2
instanceCmdStop byte = 3
instanceCmdToggle byte = 4
)
func tryNotifyRunningInstanceToShow() bool {
return false
}
func tryNotifyRunningInstanceAction(action string) bool {
return false
}
func runSecondInstanceListener() {}