Mercurial > prosody-hg
view util/roster.lua @ 3376:529bc6ea24e2
Merge Zash->trunk
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Fri, 16 Jul 2010 15:10:45 +0100 |
| 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;
