This repository has been archived on 2025-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
StarlioX/functions/connect.go
2022-09-21 10:47:49 +03:00

11 lines
180 B
Go

package functions
import "net/http"
func Connected() (ok bool) {
_, err := http.Get("http://clients3.google.com/generate_204")
if err != nil {
return false
}
return true
}