mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-13 20:01:10 -05:00
10 lines
139 B
Go
10 lines
139 B
Go
package browser
|
|
|
|
import "os/exec"
|
|
|
|
func openBrowser(url string) error {
|
|
return runCmd("xdg-open", url)
|
|
}
|
|
|
|
func setFlags(cmd *exec.Cmd) {}
|