diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-03-04 22:55:01 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-03-08 10:12:44 +0900 |
| commit | 1e6df136d8202c8adf65948527f4c3e7583b338c (patch) | |
| tree | 7c82476f6bbbc71d72ab7e71e39559eca197fd95 /worker/index.mjs | |
| parent | 54316868c3bec1ff9b04643dfe6c13cf56bf3246 (diff) | |
| download | phperkaigi-2025-albatross-1e6df136d8202c8adf65948527f4c3e7583b338c.tar.gz phperkaigi-2025-albatross-1e6df136d8202c8adf65948527f4c3e7583b338c.tar.zst phperkaigi-2025-albatross-1e6df136d8202c8adf65948527f4c3e7583b338c.zip | |
websocket to polling
Diffstat (limited to 'worker/index.mjs')
| -rw-r--r-- | worker/index.mjs | 1 |
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); |
