adding Util import

This commit is contained in:
jacoobes
2022-01-27 11:27:23 -06:00
parent d9d8835dbb
commit 4d85c8928a

View File

@@ -1,5 +1,6 @@
import { Sern } from "./handler/sern/sern";
import { Utils } from "./handler/utils/preprocessors/args"
module.exports = Sern;
export default Sern;
module.exports.Sern = Sern;
module.exports.Utils = Utils;
export default { Sern, Utils };