add dummy netlify function

This commit is contained in:
Vincent Liao
2022-02-27 00:18:08 +07:00
parent 8b7cd14dfd
commit 2f00cdca0d

6
netlify/functions/app.js Normal file
View File

@@ -0,0 +1,6 @@
exports.handler = async function () {
return {
statusCode: 200,
body: JSON.stringify({ message: 'Success!' }),
};
};