// Copyright Earl Warren // Copyright Loïc Dachary // SPDX-License-Identifier: MIT // along with this program. If not, see . // //go:build windows package util import ( "os" "os/exec" ) func SetSysProcAttribute(cmd *exec.Cmd) { } func kill(p *os.Process) error { return p.Kill() }