initial implementation of google play platform

This commit is contained in:
Almir Kadric
2014-08-28 04:21:25 +00:00
parent fbab375820
commit e64281bcf0
11 changed files with 223 additions and 3 deletions

10
lib/https/get.js Normal file
View File

@@ -0,0 +1,10 @@
var https = require('./index');
module.exports = function (url, options, cb) {
options = options || {};
// Set method to GET and call it
options.method = 'GET';
https.request(url, options, null, cb);
};