From ed23da9bed2eb208e2f5fd987eec7cb0b54ddfa5 Mon Sep 17 00:00:00 2001 From: FunctionsAPI Date: Tue, 28 Jan 2025 11:57:33 +0000 Subject: [PATCH] Automatic push from FunctionsAPI --- README.md | 3 +-- index.js | 3 +++ 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 index.js diff --git a/README.md b/README.md index 041f21a..ac78096 100644 --- a/README.md +++ b/README.md @@ -1,2 +1 @@ -# 1f2db95c656f4bbeb7a6e493dad51688 - +# commonjs hello-world diff --git a/index.js b/index.js new file mode 100644 index 0000000..e75e2a7 --- /dev/null +++ b/index.js @@ -0,0 +1,3 @@ +exports.main = (req, res) => { + res.send('hello, world'); +};