forked from GithubBackups/healthchecks
10 lines
124 B
Plaintext
10 lines
124 B
Plaintext
import "fmt"
|
|
import "net/http"
|
|
|
|
func main() {
|
|
_, err := http.Get("PING_URL")
|
|
if err != nil {
|
|
fmt.Printf("%s", err)
|
|
}
|
|
}
|