diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:11:27 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:11:27 +0100 |
commit | e75d7d79c948c968475b0ebd4ad9ee89bfce3543 (patch) | |
tree | faffe6667ee10ff64676986473160da1bfb0798d /core/moduleapi.lua | |
parent | b3ab537add25720535f7c7b63d2c17a45078d88e (diff) | |
download | prosody-e75d7d79c948c968475b0ebd4ad9ee89bfce3543.tar.gz prosody-e75d7d79c948c968475b0ebd4ad9ee89bfce3543.zip |
moduleapi: Import util.stanza required for module:broadcast()
Diffstat (limited to 'core/moduleapi.lua')
-rw-r--r-- | core/moduleapi.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua index 9e07d6a9..0cb1f1e7 100644 --- a/core/moduleapi.lua +++ b/core/moduleapi.lua @@ -16,6 +16,7 @@ local pluginloader = require "util.pluginloader"; local timer = require "util.timer"; local resolve_relative_path = require"util.paths".resolve_relative_path; local measure = require "core.statsmanager".measure; +local st = require "util.stanza"; local t_insert, t_remove, t_concat = table.insert, table.remove, table.concat; local error, setmetatable, type = error, setmetatable, type; |