import auth0 from "../../../lib/auth0"; import { withErrorHandling } from "../../../lib/apiHelpers"; const me = withErrorHandling(async (req, res) => { await auth0.handleProfile(req, res); }); export default me;