Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

13 lines
268 B
Python

import uuid
def make_uuid(prefix=""):
"""Returns a prefixable UUID string.
The client uses this for event request/response identifiers.
Args:
prefix (string): prefix string to prepend to the UUID.
"""
return prefix + str(uuid.uuid1())