coderrrrr.site/old/funcs/functions/authorize_interaction.js
2025-12-21 10:17:16 +05:30

10 lines
168 B
JavaScript

exports.handler = async (event, context) => {
return {
statusCode: 200,
headers: {
"Content-Type": "application/jrd+json"
},
body: "ok"
};
};