Software /
code /
prosody
Comparison
util/xmppstream.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 |
parent | 11560:3bbb1af92514 |
comparison
equal
deleted
inserted
replaced
12974:ba409c67353b | 12975:d10957394a3c |
---|---|
5 -- This project is MIT/X11 licensed. Please see the | 5 -- This project is MIT/X11 licensed. Please see the |
6 -- COPYING file in the source package for more information. | 6 -- COPYING file in the source package for more information. |
7 -- | 7 -- |
8 | 8 |
9 local lxp = require "lxp"; | 9 local lxp = require "lxp"; |
10 local st = require "util.stanza"; | 10 local st = require "prosody.util.stanza"; |
11 local stanza_mt = st.stanza_mt; | 11 local stanza_mt = st.stanza_mt; |
12 | 12 |
13 local error = error; | 13 local error = error; |
14 local tostring = tostring; | 14 local tostring = tostring; |
15 local t_insert = table.insert; | 15 local t_insert = table.insert; |