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