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