mirror of
https://github.com/distribution/distribution.git
synced 2025-08-05 00:49:35 +00:00
v1.3.0 of azidentity introduces support to workload identity. Signed-off-by: Flavian Missi <fmissi@redhat.com>
13 lines
229 B
Go
13 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)
|
|
}
|