File size: 163 Bytes
a5d718a | 1 2 3 4 5 6 7 8 | // src/adapter/lambda-edge/index.ts
import { handle } from "./handler.js";
import { getConnInfo } from "./conninfo.js";
export {
getConnInfo,
handle
};
|
a5d718a | 1 2 3 4 5 6 7 8 | // src/adapter/lambda-edge/index.ts
import { handle } from "./handler.js";
import { getConnInfo } from "./conninfo.js";
export {
getConnInfo,
handle
};
|