mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-19 11:02:07 -05:00
16 lines
256 B
Go
16 lines
256 B
Go
// +build !linux,!windows,!darwin,!openbsd
|
|
|
|
package browser
|
|
|
|
import (
|
|
"fmt"
|
|
"os/exec"
|
|
"runtime"
|
|
)
|
|
|
|
func openBrowser(url string) error {
|
|
return fmt.Errorf("openBrowser: unsupported operating system: %v", runtime.GOOS)
|
|
}
|
|
|
|
func setFlags(cmd *exec.Cmd) {}
|