import { getSession } from "next-auth/client"; export default async (req, res) => { const session = await getSession({ req }); res.status(200).json({ success: ...
確定! 回上一頁