initialize git, basic setup for crm

This commit is contained in:
richardtekula
2025-11-18 13:53:28 +01:00
commit da01d586fc
47 changed files with 12776 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
export function notFound(req, res, next) {
res.status(404);
const error = new Error(`🔍 Not Found - ${req.originalUrl}`);
next(error);
}