18 lines
1.7 KiB
SYSTEMD
18 lines
1.7 KiB
SYSTEMD
|
|
root = "./"
|
||
|
|
ConfigPath = root.."Server/Config/ServerCofing/?.lua;"..root.."Server/Config/GameCofing/?.lua;"
|
||
|
|
LibPath = root.."Server/Lib/?.lua;"..root.."Server/Lib/Cluster/?.lua;"..root.."Server/Lib/DB/?.lua;"..root.."Server/Lib/Http/?.lua;"..root.."Server/Lib/Log/?.lua;"..root.."Server/Lib/Defense/?.lua;"..root.."Server/Lib/Tcp/?.lua;"
|
||
|
|
CommonPath = root.."Server/Common/?.lua;"..root.."Server/Common/Player/?.lua;"
|
||
|
|
ServerPath = root.."Server/?.lua;"..root.."Server/AllServer/?.lua;"
|
||
|
|
CenterServerPath = root.."Server/AllServer/CenterServer/?.lua;"
|
||
|
|
RouteServerPath = root.."Server/AllServer/RouteServer/?.lua;"
|
||
|
|
MonitorServerPath= root.."Server/AllServer/MonitorServer/?.lua;"
|
||
|
|
MultiServerPath = root.."Server/AllServer/MultiServer/?.lua;"
|
||
|
|
RankServerPath= root.."Server/AllServer/RankServer/?.lua;"
|
||
|
|
PayServerPath= root.."Server/AllServer/PayServer/?.lua;"
|
||
|
|
GameServerPath = root.."Server/AllServer/GameServer/?.lua;"..root.."Server/AllServer/GameServer/Activity/?.lua;"..root.."Server/AllServer/GameServer/Shop/?.lua;"..root.."Server/AllServer/GameServer/Task/?.lua;"..root.."Server/AllServer/GameServer/Map/?.lua;"..root.."Server/AllServer/GameServer/Lottery/?.lua;"
|
||
|
|
AllServerPath = CenterServerPath..RouteServerPath..MonitorServerPath..MultiServerPath..RankServerPath..PayServerPath..GameServerPath
|
||
|
|
luaservice = root.."service/?.lua;"..root.."test/?.lua;"..root.."examples/?.lua;"..root.."test/?/init.lua;"..ConfigPath..LibPath..CommonPath..ServerPath..AllServerPath
|
||
|
|
lualoader = root .. "lualib/loader.lua"
|
||
|
|
lua_path = root.."lualib/?.lua;"..root.."lualib/?/init.lua;"..ConfigPath..LibPath..CommonPath..ServerPath..AllServerPath
|
||
|
|
lua_cpath = root .. "luaclib/?.so"
|
||
|
|
snax = root.."examples/?.lua;"..root.."test/?.lua"
|