mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
refactor(imports): assign modules directly to lib namespace
Mostly a change for improved intellisense with sumneko lua. Includes some type fixes and deprecation notices.
This commit is contained in:
@@ -5,7 +5,7 @@ if key ~= '' then
|
||||
local resourceName = GetCurrentResourceName()
|
||||
key = key:gsub("[\'\"]", '')
|
||||
|
||||
return function(source, event, message, ...)
|
||||
function lib.logger(source, event, message, ...)
|
||||
local data = json.encode({
|
||||
hostname = resourceName,
|
||||
service = event,
|
||||
@@ -27,4 +27,4 @@ if key ~= '' then
|
||||
end
|
||||
end
|
||||
|
||||
return function() end
|
||||
return lib.logger or function() end
|
||||
|
||||
Reference in New Issue
Block a user