mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
16 lines
No EOL
361 B
JavaScript
16 lines
No EOL
361 B
JavaScript
/* RESTfull module */
|
|
|
|
var APIURL;
|
|
|
|
exports.rest = function(req){
|
|
var lUrl = req.url,
|
|
lMethod = req.method;
|
|
|
|
/* if lUrl contains api url */
|
|
if( lUrl.indexOf(APIURL) === 0 ){
|
|
lUrl = lUrl.replace(APIURL, '');
|
|
|
|
console.log(req.url);
|
|
console.log(req.method);
|
|
}
|
|
} |