@gitchrisqueen/tdameritrade-api-js-client
Version:
TD Ameritrade API integration for node.js
16 lines (12 loc) • 326 B
JavaScript
;
/**
* Server heartbeat operation
* This operation shows how to override the global security defined above, as we want to open it up for all users.
*
* no response value expected for this operation
**/
exports.pingGET = function() {
return new Promise(function(resolve, reject) {
resolve();
});
}