aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--util/roster.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/util/roster.lua b/util/roster.lua
new file mode 100644
index 00000000..59af29be
--- /dev/null
+++ b/util/roster.lua
@@ -0,0 +1,19 @@
+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;