Source code for flask_beet.utils

from uuid import uuid4 as uuid


[docs]def unique_request_id(): """ Return a unique string """ return str(uuid())