buncid/dist/test/next-app/my-app/pages/api/hello.js

7 lines
183 B
JavaScript
Raw Normal View History

2025-02-03 12:41:13 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = handler;
function handler(req, res) {
res.status(200).json({ name: "John Doe" });
}