[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

10
lib/constants/misc.js Normal file
View File

@@ -0,0 +1,10 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.NodeEnvs = void 0;
var NodeEnvs;
(function (NodeEnvs) {
NodeEnvs["Dev"] = "development";
NodeEnvs["Test"] = "test";
NodeEnvs["Production"] = "production";
})(NodeEnvs || (exports.NodeEnvs = NodeEnvs = {}));
//# sourceMappingURL=misc.js.map