aboutsummaryrefslogtreecommitdiffstats
path: root/util/uuid.lua
blob: 489522aa74b0b34c017fc377905248689f45ee78 (plain)
1
2
3
4
5
6
7
8
9

local m_random = math.random;
module "uuid"

function uuid_generate()
	return m_random(0, 99999999);
end

return _M;