refactor(init): move global declarations

This commit is contained in:
Linden
2024-10-14 17:36:24 +11:00
parent 24b2d62235
commit 4596e4319c

View File

@@ -96,11 +96,6 @@ local lib = setmetatable({
__call = call,
})
_ENV.lib = lib
-- Override standard Lua require with our own.
require = lib.require
local intervals = {}
--- Dream of a world where this PR gets accepted.
---@param callback function | number
@@ -215,7 +210,9 @@ function lib.onCache(key, cb)
table.insert(cacheEvents[key], cb)
end
_ENV.lib = lib
_ENV.cache = cache
_ENV.require = lib.require
local notifyEvent = ('__ox_notify_%s'):format(cache.resource)