Refactoring

This commit is contained in:
testerred 2023-06-16 23:54:53 +05:30 committed by GitHub
parent c3dccbb23d
commit 567469f666
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,10 @@
exports.handler = async () => {
let envString = "";
for (let key in process.env) {
envString += `${key}: ${process.env[key]}\n`;
}
return {
statusCode: 200,
body: `Function3: ${envString}`,
};
};