6 lines
120 B
JavaScript
6 lines
120 B
JavaScript
module.exports = async function (context) {
|
|
return {
|
|
status: 200,
|
|
body: "Hello, Fission!\n"
|
|
};
|
|
} |