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

local m_random = math.random;
module "uuid"

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

return _M;