module.exports = { get: async (req, res) => { if (req.user) { res.status(200).end() } res.status(401).end() } }