Files
2023-07-16 20:19:50 +05:30

14 lines
232 B
Go

package libdetectcloud
import (
"net/http"
)
func detectAlibabaCloud() string {
resp, err := hc.Get("http://100.100.100.200/latest/")
if err == nil && resp.StatusCode == http.StatusOK {
return "Alibaba Cloud"
}
return ""
}