Rapidfireop commited on
Commit
ec06ba6
·
verified ·
1 Parent(s): d4910d5

Rename keepalive.sh to keepalive.js

Browse files
Files changed (2) hide show
  1. keepalive.js +4 -0
  2. keepalive.sh +0 -5
keepalive.js ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ const https = require('https');
2
+ setInterval(() => {
3
+ https.get('https://Rapidfireop-puter.hf.space').on('error', () => {});
4
+ }, 25000);
keepalive.sh DELETED
@@ -1,5 +0,0 @@
1
- #!/bin/bash
2
- while true; do
3
- curl -s "https://username-puter.hf.space" > /dev/null
4
- sleep 25
5
- done