16 lines
265 B
Go
16 lines
265 B
Go
|
// +build !linux,!windows,!darwin,!openbsd,!freebsd
|
||
|
|
||
|
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) {}
|