Update copyright notices for 2009
[prosody.git] / util / uuid.lua
1 -- Prosody IM v0.3
2 -- Copyright (C) 2008-2009 Matthew Wild
3 -- Copyright (C) 2008-2009 Waqas Hussain
4 -- 
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8
9
10
11 local m_random = math.random;
12 module "uuid"
13
14 function generate()
15         return m_random(0, 99999999);
16 end
17
18 return _M;