14 lines
351 B
Lua
14 lines
351 B
Lua
-- Initialize configuration status
|
|
_G.CONFIG_INIT = false
|
|
|
|
local server_config = require 'config.server'
|
|
local shared_config = require 'config.shared'
|
|
_G.LOGGER = require '@qbx_core.modules.logger'
|
|
|
|
_G.SERVER_CONFIG = server_config
|
|
_G.SHARED_CONFIG = shared_config
|
|
|
|
_G.QBX = exports.qbx_core
|
|
|
|
-- Mark configuration as initialized
|
|
_G.CONFIG_INIT = true |