10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
|
module.exports = async function (context, req) {
|
||
|
|
||
|
context.res = {
|
||
|
headers: {
|
||
|
'Content-Type': 'application/json'
|
||
|
},
|
||
|
// status: 200, /* Defaults to 200 */
|
||
|
body: 'true'
|
||
|
};
|
||
|
}
|