mirror of
https://github.com/drone/drone-cli.git
synced 2026-01-24 03:48:00 +01:00
13 lines
212 B
Go
13 lines
212 B
Go
// +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)
|
|
}
|