mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-22 05:09:05 +00:00
6 lines
78 B
Python
6 lines
78 B
Python
from uuid import uuid4
|
|
|
|
|
|
def generate_uuid4() -> str:
|
|
return str(uuid4())
|