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.")
}