aboutsummaryrefslogtreecommitdiffstats
path: root/util/roster.lua
blob: 59af29be6cbf1c73993c3de0b4829a4f273ecf11 (plain)
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;