Software / code / prosody
File
util/roster.lua @ 3387:ebb8d0f9a177
net.server_event: Remove debug logging from dummy onstatus handler
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Sat, 17 Jul 2010 15:17:02 +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;