view util/roster.lua @ 3361:8d4e7c231d3e

MUC: Fixed a traceback introduced in hg:bdc325ce9fbc.
author Waqas Hussain <waqas20@gmail.com>
date Wed, 14 Jul 2010 19:48:01 +0500
parents 69442c83602e
children
line wrap: on
line source

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;