bravo68web-portfolio-nextjs/pages/api/index.js

8 lines
195 B
JavaScript
Raw Normal View History

import axios from "axios";
2022-05-02 14:33:09 +00:00
import { withSentry } from '@sentry/nextjs';
2022-05-02 14:33:09 +00:00
const handler = async (req, res) => {
res.status(200).json({ name: "John Doe" });
}
2022-05-02 14:33:09 +00:00
export default withSentry(handler);