This commit is contained in:
Russell2259
2023-12-03 21:48:05 -07:00
parent b3a2bcf764
commit e4c0cb6920
33 changed files with 1326 additions and 474 deletions
+12 -1
View File
@@ -1,3 +1,6 @@
import * as rewriter from './utils/rewriter.js';
import TokenManager from './utils/token.js';
import path from 'node:path';
import fs from 'node:fs';
@@ -18,6 +21,14 @@ const pathToFile = (url = '', folderPath) => {
};
};
export default {
pathToFile,
TokenManager,
rewriter
};
export {
pathToFile
pathToFile,
TokenManager,
rewriter
};