import { getCommands } from "../server/lib/api-handlers.js"; export default { async fetch(request) { const commands = await getCommands(); return Response.json(commands); }, };