Software / code / prosody
File
util/roster.lua @ 3401:2387f35db5c8
storagemanager: Initial commit.
| author | Waqas Hussain <waqas20@gmail.com> |
|---|---|
| date | Fri, 23 Jul 2010 23:09:58 +0500 |
| 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;