Files
RoggioApp/node_modules/hono/dist/adapter/lambda-edge/conninfo.js
T
2026-04-26 19:42:42 +02:00

10 lines
169 B
JavaScript
Executable File

// src/adapter/lambda-edge/conninfo.ts
var getConnInfo = (c) => ({
remote: {
address: c.env.event.Records[0].cf.request.clientIp
}
});
export {
getConnInfo
};