7 lines
77 B
Python
7 lines
77 B
Python
|
from uuid import uuid4 as _uuid4
|
||
|
|
||
|
|
||
|
def gen_uuid():
|
||
|
return str(_uuid4())
|
||
|
|