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