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
|
@ -10,12 +10,12 @@ local type = type;
|
|||
local t_insert, t_concat, t_remove = table.insert, table.concat, table.remove;
|
||||
local s_char = string.char;
|
||||
local tostring, tonumber = tostring, tonumber;
|
||||
local pairs, ipairs, spairs = pairs, ipairs, require "util.iterators".sorted_pairs;
|
||||
local pairs, ipairs, spairs = pairs, ipairs, require "prosody.util.iterators".sorted_pairs;
|
||||
local next = next;
|
||||
local getmetatable, setmetatable = getmetatable, setmetatable;
|
||||
local print = print;
|
||||
|
||||
local has_array, array = pcall(require, "util.array");
|
||||
local has_array, array = pcall(require, "prosody.util.array");
|
||||
local array_mt = has_array and getmetatable(array()) or {};
|
||||
|
||||
--module("json")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue