mirror of
https://github.com/rjNemo/graphql_python_template
synced 2026-06-06 02:26:47 +00:00
8 lines
202 B
Python
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 = []
|