aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;