UNPKG

demos

Version:

13 lines (10 loc) 275 B
function start() { console.log("Request handler 'start' was called."); return "Response from Start"; } function login() { console.log("Request handler 'login' was called."); return "Response from Login"; } exports.start = start; exports.login = login;