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