Files
Atay-Makhzan/modules/process/manager_windows.go
T

16 lines
275 B
Go
Raw Normal View History

2022-06-03 15:36:18 +01:00
// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2022-06-03 15:36:18 +01:00
//go:build windows
package process
import (
"os/exec"
)
// SetSysProcAttribute sets the common SysProcAttrs for commands
func SetSysProcAttribute(cmd *exec.Cmd) {
// Do nothing
}