1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
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;