Files
fission-src/demos/hello/hello.js
T

8 lines
119 B
JavaScript

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