7 lines
66 B
Python
7 lines
66 B
Python
import uuid
|
|
|
|
|
|
def makeId() -> str:
|
|
return str(uuid.uuid4())
|
|
|
|
|