-
9Router Worker
-
Worker is running. Configure this URL in your 9Router dashboard.
-
-`;
-
- return new Response(html, {
- status: 200,
- headers: {
- "Content-Type": "text/html; charset=utf-8",
- "Cache-Control": "public, max-age=3600"
- }
- });
-}
diff --git a/cloud/src/services/storage.js b/cloud/src/services/storage.js
deleted file mode 100644
index 11a4fb6..0000000
--- a/cloud/src/services/storage.js
+++ /dev/null
@@ -1,88 +0,0 @@
-import * as log from "../utils/logger.js";
-
-// Request-scoped cache for getMachineData (avoids multiple D1 queries per request)
-const requestCache = new Map();
-const CACHE_TTL_MS = 5000;
-
-/**
- * Get machine data from D1 (with request-scope caching)
- * @param {string} machineId
- * @param {Object} env
- * @returns {Promise