blob: e29d2207dd0cf184d1c4ec1f7816067fb12a16fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// +build !linux,!windows,!darwin,!openbsd
package browser
import (
"fmt"
"runtime"
)
func openBrowser(url string) error {
return fmt.Errorf("openBrowser: unsupported operating system: %v", runtime.GOOS)
}
|