mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-31 17:33:48 +00:00
9 lines
214 B
Lua
9 lines
214 B
Lua
|
|
--connect to the database
|
|
function database_handle(t)
|
|
if (t == "system") then
|
|
return freeswitch.Dbh(database["system"]);
|
|
elseif (t == "switch") then
|
|
return freeswitch.Dbh(database["switch"]);
|
|
end
|
|
end |