Added backend folder structure.

This commit is contained in:
2025-02-22 12:55:06 +05:30
parent fc8c089ade
commit 793e6c2009
18 changed files with 3215 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
module.exports = (theFunc) => (req, res, next) => {
Promise.resolve(theFunc(req, res, next)).catch(next);
};