aboutsummaryrefslogtreecommitdiffstats
path: root/util/session.lua
blob: 735b6165a4bd10b8f3c351509dcbc7a9ba93a1d9 (plain)
1
2
3
4
5
6
7
8
9
10
11

local function new_session(typ)
	local session = {
		type = typ .. "_unauthed";
	};
	return session;
end

return {
	new = new_session;
}