Mercurial > prosody-hg
diff util/uuid.lua @ 12975:d10957394a3c
util: Prefix module imports with prosody namespace
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Fri, 17 Mar 2023 16:23:16 +0100 |
| parents | a0ff5c438e9d |
| children | e6a5f196fc1f |
line wrap: on
line diff
--- a/util/uuid.lua Fri Mar 17 16:23:12 2023 +0100 +++ b/util/uuid.lua Fri Mar 17 16:23:16 2023 +0100 @@ -6,9 +6,9 @@ -- COPYING file in the source package for more information. -- -local random = require "util.random"; +local random = require "prosody.util.random"; local random_bytes = random.bytes; -local hex = require "util.hex".encode; +local hex = require "prosody.util.hex".encode; local m_ceil = math.ceil; local function get_nibbles(n)
