Revert "feat(tools): add exec tool enhancement with background execution and …"

This reverts commit f901af8cbc.
This commit is contained in:
daming大铭
2026-03-22 00:39:47 +08:00
committed by GitHub
parent f901af8cbc
commit ebcd5645f1
11 changed files with 31 additions and 2082 deletions
-13
View File
@@ -1,13 +0,0 @@
//go:build windows
package tools
import (
"os/exec"
"strconv"
)
func killProcessGroup(pid int) error {
_ = exec.Command("taskkill", "/T", "/F", "/PID", strconv.Itoa(pid)).Run()
return nil
}