Closed dec87 closed 7 years ago
Replace dots in classpath - router.js apiPath = vPath.join(root, config.classPath, currentPacket.action.replace('.', slash)) + '.js'; to apiPath = vPath.join(root, config.classPath, currentPacket.action.replace(/\./g, slash)) + '.js';
apiPath = vPath.join(root, config.classPath, currentPacket.action.replace('.', slash)) + '.js';
apiPath = vPath.join(root, config.classPath, currentPacket.action.replace(/\./g, slash)) + '.js';
implemented
Replace dots in classpath - router.js
apiPath = vPath.join(root, config.classPath, currentPacket.action.replace('.', slash)) + '.js';
toapiPath = vPath.join(root, config.classPath, currentPacket.action.replace(/\./g, slash)) + '.js';