aboutsummaryrefslogtreecommitdiffstats
path: root/util/roster.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-07-26 13:40:00 +0100
committerMatthew Wild <mwild1@gmail.com>2010-07-26 13:40:00 +0100
commit95fec897d970e2cae9740d4bce71a56378850ffb (patch)
treec2ccf34a0ab44977897455d85a1b2e81aa88885c /util/roster.lua
parent0cad37abd3c5191ed8328d9fb984bee0c09db4cd (diff)
downloadprosody-95fec897d970e2cae9740d4bce71a56378850ffb.tar.gz
prosody-95fec897d970e2cae9740d4bce71a56378850ffb.zip
util.roster: Remove, not going this route now
Diffstat (limited to 'util/roster.lua')
-rw-r--r--util/roster.lua19
1 files changed, 0 insertions, 19 deletions
diff --git a/util/roster.lua b/util/roster.lua
deleted file mode 100644
index 59af29be..00000000
--- a/util/roster.lua
+++ /dev/null
@@ -1,19 +0,0 @@
-module "roster"
-
-local roster = {};
-roster.__index = roster;
-
-function new()
- return setmetatable({}, roster);
-end
-
-function roster:subscribers()
-end
-
-function roster:subscriptions()
-end
-
-function roster:items()
-end
-
-return _M;