refactor: implement cross-platform abstraction for process management, media control, and startup configuration (TESTING)

This commit is contained in:
jahruz67
2026-04-09 21:31:02 -07:00
parent cc644e3059
commit ba0e75c503
25 changed files with 458 additions and 48 deletions
+9
View File
@@ -0,0 +1,9 @@
package platform
// Overlay defines the cross-platform interface for screen overlays
type Overlay interface {
Show(message string)
Hide()
SetVolume(level float64)
Close()
}