Sign in
vanadium
/
release.go.x.ref
/
58e85b834d22063d26aad9450446461bc1820264
/
.
/
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.")
}