util.roster: Remove, not going this route now
authorMatthew Wild <mwild1@gmail.com>
Mon, 26 Jul 2010 13:40:00 +0100
changeset 3409 b2a112720cae
parent 3408 e03fd9a16e19
child 3410 32b018eeeb3b
util.roster: Remove, not going this route now
util/roster.lua
--- a/util/roster.lua	Mon Jul 26 02:18:03 2010 +0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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;