Feat : Setup cloudflare worker for cloud endpoint

This commit is contained in:
decolua
2026-02-09 11:27:41 +07:00
parent c68b875a36
commit 102c193112
25 changed files with 1739 additions and 82 deletions

View File

@@ -0,0 +1,8 @@
// Stub for cloud worker - no-op async functions
export async function saveRequestUsage() {}
export function trackPendingRequest() {}
export async function appendRequestLog() {}
export async function getUsageDb() { return { data: { history: [] } }; }
export async function getUsageHistory() { return []; }
export async function getUsageStats() { return {}; }
export async function getRecentLogs() { return []; }