1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-04-06 04:46:26 +00:00
_/astro-fastify/src/pages/index.ts

9 lines
166 B
TypeScript

import type { APIRoute } from "astro";
export const GET: APIRoute = () => {
return new Response(
JSON.stringify({
number: Math.random(),
}),
);
};