From c63b332ff300b5df997979be4749e30e435ae9d4 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Wed, 14 Jul 2010 01:36:08 +0100 Subject: util.roster: Initial skeleton commit --- util/roster.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 util/roster.lua diff --git a/util/roster.lua b/util/roster.lua new file mode 100644 index 00000000..59af29be --- /dev/null +++ b/util/roster.lua @@ -0,0 +1,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; -- cgit v1.2.3