Revert "fix: update some examples"

This reverts commit b2ede38269.
This commit is contained in:
Stefan Ottosson 2024-05-24 08:26:28 +02:00
parent e670b5f4cf
commit 823aeda9fe
No known key found for this signature in database
GPG key ID: 254BFA8856A90692
2 changed files with 2 additions and 4 deletions

View file

@ -2,10 +2,9 @@
# Filename: index.sh
PUSH_URL="https://example.com/api/push/key?status=up&msg=OK&ping="
INTERVAL=60
HTTP_METHOD="GET"
while true; do
curl -X $HTTP_METHOD -s -o /dev/null $PUSH_URL
curl -s -o /dev/null $PUSH_URL
echo "Pushed!"
sleep $INTERVAL
done

View file

@ -1,10 +1,9 @@
// Supports: Node.js >= 18, Deno, Bun
const pushURL = "https://example.com/api/push/key?status=up&msg=OK&ping=";
const interval = 60;
const method = "GET";
const push = async () => {
await fetch(pushURL, { method });
await fetch(pushURL);
console.log("Pushed!");
};