mirror of
https://github.com/kou029w/_.git
synced 2025-03-14 02:15:15 +00:00
10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
|
import type { APIRoute } from "astro";
|
||
|
|
||
|
export const GET: APIRoute = () => {
|
||
|
return new Response(
|
||
|
JSON.stringify({
|
||
|
number: Math.random(),
|
||
|
}),
|
||
|
);
|
||
|
};
|