mirror of
https://github.com/getlantern/elevate
synced 2025-09-26 20:21:21 +08:00
11 lines
164 B
Go
11 lines
164 B
Go
package elevate
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
// No op
|
|
func buildCommand(prompt string, icon string, name string, args ...string) (*exec.Cmd, error) {
|
|
return nil, nil
|
|
}
|