knative-report/functions/helloget.js
2019-10-02 18:27:25 +02:00

6 lines
87 B
JavaScript

module.exports = {
foo: function (event, context) {
return 'hello world!';
}
}