21 lines
547 B
JavaScript
21 lines
547 B
JavaScript
const path = require("path");
|
|
|
|
const tameWild = (wild) => {
|
|
return wild.replace(/\*/g, "_");
|
|
};
|
|
|
|
module.exports = {
|
|
|
|
certificatesPath: (options, id, fileName) => {
|
|
var filePath = path.join(options.configDir, "live", tameWild(id), fileName);
|
|
console.log("filePath:", filePath);
|
|
return filePath;
|
|
},
|
|
|
|
accountsPath: (options, id) => {
|
|
var filePath = path.join(options.configDir, options.accountsDir, tameWild(id) + ".json");
|
|
console.log("filePath:", filePath);
|
|
return filePath;
|
|
}
|
|
|
|
}; |