blob: 02ccab538cb6a87bb405f38e7e045d866864659f (
plain)
1
2
3
4
5
6
7
8
|
require "modulemanager"
-- Handle stanzas that were addressed to the server (whether they came from c2s, s2s, etc.)
function handle_stanza(origin, stanza)
-- Use plugins
return modulemanager.handle_stanza(origin, stanza);
end
|