// src/adapter/vercel/conninfo.ts
var getConnInfo = (c) => ({
remote: {
address: c.req.header("x-real-ip")
}
});
export {
getConnInfo
};