commit 2a3da5777f4259300ec10065c960e471e2297037 Author: purvil a Date: Wed Jun 25 12:07:58 2025 +0000 code update recorded at: 25/06/25 12:07:58 diff --git a/handler.js b/handler.js new file mode 100644 index 0000000..7eb2eab --- /dev/null +++ b/handler.js @@ -0,0 +1,13 @@ +// handler.js + +exports.handler = async (event) => { + const cwd = process.cwd(); // Get current working directory + + return { + statusCode: 200, + body: JSON.stringify({ + message: "Current working directory fetched successfully", + cwd: cwd + }), + }; +};