You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
291 B
21 lines
291 B
1 year ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"net/http"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
const PushURL = "https://example.com/api/push/key?status=up&msg=OK&ping="
|
||
|
const Interval = 60
|
||
|
|
||
|
for {
|
||
|
_, err := http.Get(PushURL)
|
||
|
if err == nil {
|
||
|
fmt.Println("Pushed!")
|
||
|
}
|
||
|
time.Sleep(Interval * time.Second)
|
||
|
}
|
||
|
}
|