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