File

util/roster.lua @ 3374:ce52f1d5cb74

util.sasl.scram: Reference actual RFC instead of the draft.
author Tobias Markmann <tm@ayena.de>
date Thu, 15 Jul 2010 21:14:07 +0200
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;