Update snippet to reflect HTTPS usage instead of HTTP

This commit is contained in:
Michael Kelley 2017-01-02 13:42:11 -05:00 committed by GitHub
parent fc415b39c8
commit a8f2306724

View File

@ -1,2 +1,2 @@
var http = require('http');
http.get("PING_URL");
var https = require('https');
https.get("PING_URL");