13 lines
239 B
Go
13 lines
239 B
Go
//go:build !(amd64 || arm64)
|
|
|
|
package main
|
|
|
|
import (
|
|
"errors"
|
|
"net/url"
|
|
)
|
|
|
|
func getMachineConn(connection string, parsedConnection *url.URL) (string, error) {
|
|
return "", errors.New("podman machine not supported on this architecture")
|
|
}
|