// Strict Mode "use strict"; // Imports import authentication from "../../authentication/authentication.js"; // Handler export default async function handler ( req, res ) { try { await authentication.setUser(req, res, ""); res.send(200); } catch { res.send(500); }; };