Git Repository

Stackyard

Stackyard scannt lokale Entwicklungsordner und bündelt Projekte, Git-Status, TODOs, Toolchains, Docker-Compose-Setups, Datei- und Launcher-Funktionen sowie Operations-Informationen in einer lokalen WebUI.

Projektseite ↗
HTTPShttps://zanvex.de/git/stackyard.git

internal/operations/terminate_other.go

Zum Verzeichnis
//go:build !windows

package operations

import "os"

func terminateProcess(process *os.Process) error {
	return process.Kill()
}