mirror of
https://github.com/Starlio-app/Website.git
synced 2025-04-07 03:25:26 +01:00
11 lines
186 B
Go
11 lines
186 B
Go
package functions
|
|
|
|
import "net/http"
|
|
|
|
var Connected = func() (ok bool) {
|
|
_, err := http.Get("http://clients3.google.com/generate_204")
|
|
if err != nil {
|
|
return false
|
|
}
|
|
return true
|
|
}
|