7 lines
195 B
TypeScript
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' }),
|
|
);
|