1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-03-12 17:35:17 +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(),
}),
);
};