mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util: Prefix module imports with prosody namespace
This commit is contained in:
parent
869581384d
commit
43531740f9
68 changed files with 246 additions and 246 deletions
|
@ -4,9 +4,9 @@ local ipairs = ipairs;
|
|||
local tostring = tostring;
|
||||
local type = type;
|
||||
local assert, pcall, debug_traceback = assert, pcall, debug.traceback;
|
||||
local xpcall = require "util.xpcall".xpcall;
|
||||
local xpcall = require "prosody.util.xpcall".xpcall;
|
||||
local t_concat = table.concat;
|
||||
local log = require "util.logger".init("sql");
|
||||
local log = require "prosody.util.logger".init("sql");
|
||||
|
||||
local DBI = require "DBI";
|
||||
-- This loads all available drivers while globals are unlocked
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue