module.exports = { path: "/authenticate", /** * apps verify token * @url /api/authenticate * @method POST * @POST ['applicationId', 'applicationSecret', 'userId', 'token'] * @TODO add implementation */ post: async (req, res) => { return res.end(); } };