Software /
code /
prosody
Changeset
3359:69442c83602e
util.roster: Initial skeleton commit
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 14 Jul 2010 01:36:08 +0100 |
parents | 3358:b5a812cf698c |
children | 3360:6c07b64e972c |
files | util/roster.lua |
diffstat | 1 files changed, 19 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/util/roster.lua Wed Jul 14 01:36:08 2010 +0100 @@ -0,0 +1,19 @@ +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;