Files
AiDA_Python/app/service/utils/generate_uuid.py

11 lines
157 B
Python
Raw Permalink Normal View History

2024-03-20 11:44:15 +08:00
import threading
import uuid
id_lock = threading.Lock()
def generate_uuid():
with id_lock:
unique_id = str(uuid.uuid1())
return unique_id