mirror of https://github.com/bjc/prosody
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
180 B
10 lines
180 B
|
13 years ago
|
local cache = module:shared("/*/sql.lib/util.sql");
|
||
|
|
|
||
|
|
if not cache._M then
|
||
|
|
prosody.unlock_globals();
|
||
|
|
cache._M = require "util.sql";
|
||
|
|
prosody.lock_globals();
|
||
|
|
end
|
||
|
|
|
||
|
|
return cache._M;
|