Mercurial > prosody-hg
diff plugins/muc/occupant_id.lib.lua @ 12977:74b9e05af71e
plugins: Prefix module imports with prosody namespace
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Fri, 24 Mar 2023 13:15:28 +0100 |
| parents | e9882c4c397f |
| children | a45b209302c1 |
line wrap: on
line diff
--- a/plugins/muc/occupant_id.lib.lua Fri Mar 17 18:03:07 2023 +0100 +++ b/plugins/muc/occupant_id.lib.lua Fri Mar 24 13:15:28 2023 +0100 @@ -4,9 +4,9 @@ -- (C) 2020 Maxime “pep” Buquet <pep@bouah.net> -- (C) 2020 Matthew Wild <mwild1@gmail.com> -local uuid = require "util.uuid"; -local hmac_sha256 = require "util.hashes".hmac_sha256; -local b64encode = require "util.encodings".base64.encode; +local uuid = require "prosody.util.uuid"; +local hmac_sha256 = require "prosody.util.hashes".hmac_sha256; +local b64encode = require "prosody.util.encodings".base64.encode; local xmlns_occupant_id = "urn:xmpp:occupant-id:0";
