coderrrrr.site/netlify/functions/authorize_interaction.js
2025-04-25 12:20:01 +05:30

10 lines
168 B
JavaScript

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