code update recorded at: 25/06/25 12:07:58

This commit is contained in:
purvil a 2025-06-25 12:07:58 +00:00
commit 2a3da5777f

13
handler.js Normal file
View File

@ -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
}),
};
};