kubeless/functions/helloget.js

6 lines
87 B
JavaScript
Raw Normal View History

2019-04-26 15:22:46 +02:00
module.exports = {
foo: function (event, context) {
return 'hello world!';
}
}