MCPcopy Create free account
hub / github.com/UiPath/uipathcli / NewExecCustomProcess

Function NewExecCustomProcess

utils/process/exec_custom_process.go:26–33  ·  view source on GitHub ↗
(exitCode int, stdout string, stderr string, onStart func(name string, args []string))

Source from the content-addressed store, hash-verified

24}
25
26func NewExecCustomProcess(exitCode int, stdout string, stderr string, onStart func(name string, args []string)) *ExecCustomProcess {
27 return &ExecCustomProcess{
28 ExitCode: exitCode,
29 Stdout: stdout,
30 Stderr: stderr,
31 OnStart: onStart,
32 }
33}

Calls

no outgoing calls