diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-08-03 11:02:30 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-08-03 11:02:30 +0100 |
commit | a9cc14908561843f55293364b33e8c30aeb95d54 (patch) | |
tree | ae7163f25c7a5d0cd0d7b181189a00229dd53707 /core | |
parent | 37f77327fd3006f7c6698668e98ba192e069c426 (diff) | |
download | prosody-a9cc14908561843f55293364b33e8c30aeb95d54.tar.gz prosody-a9cc14908561843f55293364b33e8c30aeb95d54.zip |
eventmanager: REMOVE!!!
Diffstat (limited to 'core')
-rw-r--r-- | core/eventmanager.lua | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/core/eventmanager.lua b/core/eventmanager.lua deleted file mode 100644 index 1f69c8e1..00000000 --- a/core/eventmanager.lua +++ /dev/null @@ -1,27 +0,0 @@ --- Prosody IM --- Copyright (C) 2008-2010 Matthew Wild --- Copyright (C) 2008-2010 Waqas Hussain --- --- This project is MIT/X11 licensed. Please see the --- COPYING file in the source package for more information. --- - - -local t_insert = table.insert; -local ipairs = ipairs; - -local events = _G.prosody.events; - -module "eventmanager" - -local event_handlers = {}; - -function add_event_hook(name, handler) - return events.add_handler(name, handler); -end - -function fire_event(name, ...) - return events.fire_event(name, ...); -end - -return _M; |