authMiddleware.js 133 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 const jwt = require("jsonwebtoken"); const authHandler = (err, req, res, next) => { next(); }; module.exports = { authHandler };