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