mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
6 lines
145 B
JavaScript
6 lines
145 B
JavaScript
module.exports = async(context) => {
|
|
context.log(context.req.body.$id);
|
|
context.log(context.req.body.name);
|
|
return context.res.empty();
|
|
};
|