This commit is contained in:
Malted 2025-03-30 17:50:04 -04:00
parent f4a002c0a2
commit 8e9b9eda40
No known key found for this signature in database

View file

@ -41,7 +41,7 @@ Bun.serve({
"/ip": async (req, server) => {
const start = performance.now()
const ip = server.requestIP(req)
console.log({ip})
console.log({ip, req})
const [ipRes] = await q(ip.address)
console.log(Math.round(performance.now() - start) + " ms")
return Response.json(ipRes)