module.exports.userService = (req, res) => {
  if (!req.user) return res.status(401).render('index');

  return res.render('userService');
};