Software /
code /
prosody
File
util/roster.lua @ 3359:69442c83602e
util.roster: Initial skeleton commit
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 14 Jul 2010 01:36:08 +0100 (2010-07-14) |
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;