utils/src/commands/uuid4.py

6 lines
106 B
Python

"""Generate and print a random UUID4."""
import uuid
def main(args: list[str]):
print(uuid.uuid4())