util: Prefix module imports with prosody namespace

This commit is contained in:
Kim Alvefur 2023-03-17 16:23:16 +01:00
parent 869581384d
commit 43531740f9
68 changed files with 246 additions and 246 deletions

View file

@ -1,7 +1,7 @@
local promise_methods = {};
local promise_mt = { __name = "promise", __index = promise_methods };
local xpcall = require "util.xpcall".xpcall;
local xpcall = require "prosody.util.xpcall".xpcall;
local unpack = table.unpack;
function promise_mt:__tostring()