File

util/roster.lua @ 3360:6c07b64e972c

net.dns: Call :cancel() on the current resolver instead of the prototype
author Matthew Wild <mwild1@gmail.com>
date Wed, 14 Jul 2010 15:32:14 +0100
parent 3359:69442c83602e
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;