code update recorded at: 25/06/25 12:07:58
This commit is contained in:
commit
2a3da5777f
|
|
@ -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
|
||||
}),
|
||||
};
|
||||
};
|
||||
Loading…
Reference in New Issue
Block a user