6 lines
81 B
Python
6 lines
81 B
Python
import uuid
|
|
|
|
|
|
def generate_uuid():
|
|
return str(uuid.uuid4()).replace('-', '')
|