5 lines
66 B
Python
5 lines
66 B
Python
import uuid
|
|
|
|
|
|
def get_random_uuid():
|
|
return str(uuid.uuid4())
|