Source code for faust.utils

from uuid import uuid4

__all__ = ['uuid']


[docs]def uuid() -> str: return str(uuid4())