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