This commit is contained in:
Gvidas Juknevičius 2024-08-25 23:56:48 +03:00
parent 4df6073f9c
commit 59dc5edde5
Signed by: MCorange
GPG Key ID: 12B1346D720B7FBB
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ rawset(__BUNDLER_FILES, "main", function ()
updaterLoop(upd) updaterLoop(upd)
end, end,
function () function ()
require(MODULE_NAME)(lib_exports); require(MODULE_NAME).main(lib_exports);
end end
); );
end end

View File

@ -39,7 +39,7 @@ local function _start()
updaterLoop(upd) updaterLoop(upd)
end, end,
function () function ()
require(MODULE_NAME)(lib_exports); require(MODULE_NAME).main(lib_exports);
end end
); );
end end