mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00
14 lines
227 B
Go
14 lines
227 B
Go
//go:build !windows && !darwin && !linux
|
|
|
|
package desktop
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func BuildServerAddr() (string, error) {
|
|
return "", errors.Errorf("Docker Desktop unsupported on %s", runtime.GOOS)
|
|
}
|