Implement controlled app launch (T-401)

This commit is contained in:
ila
2026-07-19 21:10:59 +08:00
parent d0cf333394
commit 87083c387f
32 changed files with 1802 additions and 31 deletions
+17 -1
View File
@@ -2,7 +2,11 @@
package windows
import "runtime"
import (
"runtime"
"softbox.local/core/application/launch"
)
type platformStub struct{}
@@ -17,3 +21,15 @@ func (platformStub) OS() string {
func (platformStub) Edition() Edition {
return EditionLegacy
}
func (platformStub) IsCompatible(string) (bool, error) {
return false, ErrUnsupported
}
func (platformStub) IsRunning(string, string) (bool, error) {
return false, ErrUnsupported
}
func (platformStub) Start(launch.Command) (int, error) {
return 0, ErrUnsupported
}