coderrrrr.site/funcs/functions/authorize_interaction.js
2025-05-02 12:39:42 +05:30

10 lines
168 B
JavaScript

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