This commit is contained in:
kasukabeshinchan 2023-05-28 19:30:50 +05:30 committed by GitHub
commit 036fe2728c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
exports.handler = async () => {
let envString = "";
for (let key in process.env) {
envString += `${key}: ${process.env[key]}
`;
}
return {
statusCode: 200,
body: `hello world! I have a hotub ${envString}`,
};
};