Files
spoon/apps/next/src/app/api/box/status/route.ts
T

7 lines
195 B
TypeScript

import { proxyBox, withBox } from '@/lib/agent-worker-proxy';
export const GET = async () =>
await withBox(
async (username) => await proxyBox(username, 'status', { method: 'GET' }),
);