blob: 4854d189d4d290cb5d4e01f5c2e86af234cdd0e7 (
plain)
1
2
3
4
5
6
7
8
9
|
"""User-specific code and data structures."""
from uuid import UUID
from typing import NamedTuple
class User(NamedTuple):
"""Class representing a user."""
user_id: UUID
email: str
name: str
|