[MAJOR][FIRSTCOMMIT] Added basic routes, controllers, repos to kanban service (no postgres yet)

This commit is contained in:
2025-09-27 14:09:35 +05:30
parent f283f6043f
commit fd7ceca2ef
109 changed files with 3554 additions and 444 deletions

17
lib/other/classes.js Normal file
View File

@@ -0,0 +1,17 @@
"use strict";
/**
* Miscellaneous shared classes go here.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.RouteError = void 0;
/**
* Error with status code and message
*/
class RouteError extends Error {
constructor(status, message) {
super(message);
this.status = status;
}
}
exports.RouteError = RouteError;
//# sourceMappingURL=classes.js.map