graphql_python_template/app/models/user.py
2020-10-30 16:07:06 +01:00

8 lines
202 B
Python

from uuid import uuid4
class User:
def __init__(self, user_id: str = None, username: str = "X"):
self.user_id = user_id or uuid4()
self.username = username
self.tasks = []