Files
fission-src/examples/nodejs/hello.js
T

8 lines
114 B
JavaScript

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