Files
fission-src/examples/nodejs/hello.js
T
VishalandGitHub ca6bc12cfc Restoring one example as it is used in many places including Helm charts (#2011)
Some tests were pointing to examples directory which has been moved out. Also kept one node.js examples as it is widely used in Helm charts etc.
2021-05-09 23:36:39 +05:30

8 lines
119 B
JavaScript

module.exports = async function(context) {
return {
status: 200,
body: "hello, world!\n"
};
}