"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