forked from GithubBackups/healthchecks
4 lines
117 B
Plaintext
4 lines
117 B
Plaintext
var https = require('https');
|
|
https.get('PING_URL').on('error', (err) => {
|
|
console.log('Ping failed: ' + err)
|
|
}); |