7caf058a65
v1.3.0 of azidentity introduces support to workload identity. Signed-off-by: Flavian Missi <fmissi@redhat.com>
12 lines
229 B
Go
12 lines
229 B
Go
// +build !linux,!windows,!darwin,!openbsd,!freebsd,!netbsd
|
|
|
|
package browser
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
func openBrowser(url string) error {
|
|
return fmt.Errorf("openBrowser: unsupported operating system: %v", runtime.GOOS)
|
|
}
|