UNPKG

marketcloud-node

Version:
14 lines (11 loc) 281 B
module.exports = (function () { function Application (master) { this.master = master this.name = 'application' this.endpoint = '/' + this.name } Application.prototype.get = function () { return this.master._Get('/application') } return Application })()