mirror of
https://github.com/turbomaster95/coderrrrr.git
synced 2025-05-12 04:50:13 +00:00
10 lines
168 B
JavaScript
10 lines
168 B
JavaScript
exports.handler = async (event, context) => {
|
|
return {
|
|
statusCode: 200,
|
|
headers: {
|
|
"Content-Type": "application/jrd+json"
|
|
},
|
|
body: "ok"
|
|
};
|
|
};
|