[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

1
lib/other/classes.js.map Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"classes.js","sourceRoot":"","sources":["../../src/other/classes.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAKH;;GAEG;AACH,MAAa,UAAW,SAAQ,KAAK;IAEnC,YAAY,MAAuB,EAAE,OAAe;QAClD,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;CACF;AAND,gCAMC"}

3
lib/other/types.js Normal file
View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=types.js.map

1
lib/other/types.js.map Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/other/types.ts"],"names":[],"mappings":""}