7 lines
206 B
JavaScript
7 lines
206 B
JavaScript
import auth0 from "../../lib/auth0";
|
|
import { withErrorHandling } from "../../lib/apiHelpers";
|
|
|
|
export default callback = withErrorHandling(async (req, res) => {
|
|
await auth0.handleCallback(req, res);
|
|
});
|