Create helloget.js

This commit is contained in:
Torma Kristóf 2019-04-26 15:22:46 +02:00 committed by GitHub
parent 500f932c0d
commit 128c86dab1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

5
functions/helloget.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = {
foo: function (event, context) {
return 'hello world!';
}
}