Sign in
vanadium
/
release.go.x.ref
/
8e2258a2da7c030013d2917bd27ded561ec24c50
/
.
/
profiles
/
internal
/
gce
/
gce_android.go
blob: dcfa7d1adfb779273690057fc0801741f027bd5e [
file
] [
log
] [
blame
]
// +build android
package gce
import (
"net"
)
func RunningOnGCE() bool {
return false
}
func ExternalIPAddress() (net.IP, error) {
panic("The GCE profile was unexpectedly used with android.")
}