mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-16 03:19:59 -04:00
9 lines
135 B
Go
9 lines
135 B
Go
package browser
|
|
|
|
import "os/exec"
|
|
|
|
func openBrowser(url string) error {
|
|
return runCmd("open", url)
|
|
}
|
|
|
|
func setFlags(cmd *exec.Cmd) {}
|