Compare commits

...

1 Commits

Author SHA1 Message Date
FunctionsAPI
51b0c8b67c Automatic push from FunctionsAPI 2025-01-19 13:51:30 +00:00
2 changed files with 4 additions and 2 deletions

View File

@ -1,2 +1 @@
# samples
# commonjs hello-world

3
index.js Normal file
View File

@ -0,0 +1,3 @@
exports.main = (req, res) => {
res.send('hello, world');
};