[MAJOR][FIRSTCOMMIT] Added basic routes, controllers, repos to kanban service (no postgres yet)
This commit is contained in:
17
lib/other/classes.js
Normal file
17
lib/other/classes.js
Normal 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
1
lib/other/classes.js.map
Normal 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
3
lib/other/types.js
Normal 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
1
lib/other/types.js.map
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/other/types.ts"],"names":[],"mappings":""}
|
||||
Reference in New Issue
Block a user