Software / code / prosody
File
util/roster.lua @ 3380:e74e80b454a1
util.dataforms: Add list-multi support
| author | Florian Zeitz <florob@babelmonkeys.de> |
|---|---|
| date | Thu, 15 Jul 2010 22:58:10 +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;