[MAJOR][FIRSTCOMMIT] Added basic routes, controllers, repos to kanban service (no postgres yet)
This commit is contained in:
17
lib/routes/constants/Paths.js
Normal file
17
lib/routes/constants/Paths.js
Normal file
@@ -0,0 +1,17 @@
|
||||
"use strict";
|
||||
/**
|
||||
* Express router paths go here.
|
||||
*/
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const Paths = {
|
||||
Base: '/api',
|
||||
Users: {
|
||||
Base: '/users',
|
||||
Get: '/all',
|
||||
Add: '/add',
|
||||
Update: '/update',
|
||||
Delete: '/delete/:id',
|
||||
},
|
||||
};
|
||||
exports.default = Paths;
|
||||
//# sourceMappingURL=Paths.js.map
|
||||
Reference in New Issue
Block a user