Changeset

3409:b2a112720cae

util.roster: Remove, not going this route now
author Matthew Wild <mwild1@gmail.com>
date Mon, 26 Jul 2010 13:40:00 +0100
parents 3408:e03fd9a16e19
children 3410:32b018eeeb3b
files util/roster.lua
diffstat 1 files changed, 0 insertions(+), 19 deletions(-) [+]
line wrap: on
line diff
--- 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;