1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-03-14 02:15:15 +00:00
_/astro-fastify/src/pages/index.ts

10 lines
166 B
TypeScript
Raw Normal View History

2024-03-23 19:37:55 +09:00
import type { APIRoute } from "astro";
export const GET: APIRoute = () => {
return new Response(
JSON.stringify({
number: Math.random(),
}),
);
};