17 lines
357 B
JavaScript
17 lines
357 B
JavaScript
"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
|