aboutsummaryrefslogtreecommitdiffhomepage
path: root/worker/index.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'worker/index.mjs')
-rw-r--r--worker/index.mjs1
1 files changed, 1 insertions, 0 deletions
diff --git a/worker/index.mjs b/worker/index.mjs
index 525fe63..9950ffa 100644
--- a/worker/index.mjs
+++ b/worker/index.mjs
@@ -27,6 +27,7 @@ const execPhp = (code, input, timeoutMsec) => {
const app = new Hono();
app.post("/exec", async (c) => {
+ console.log("worker/exec");
const { code, stdin, max_duration_ms } = await c.req.json();
const result = await execPhp(code, stdin, max_duration_ms);
return c.json(result);