UNPKG

jive-sdk

Version:

Node.js SDK for Jive Software to assist with the development of add-ons

15 lines (14 loc) 291 B
exports.absolute = { 'verb' : 'get', 'path' : '/absolute', 'route' : function(req, res) { res.end('absolute'); } }; exports.absoluteCapitalVerb = { 'verb' : 'GET', 'path' : '/absolute', 'route' : function(req, res) { res.end('absolute'); } };