"""SQLAlchemy 2.0 typed models and the shared declarative Base.

Every model module must be imported here or Alembic's autogenerate cannot see
its table.
"""

from .base import Base
from .identity import Invite, User
from .spotify import SpotifyAccount

__all__ = ["Base", "Invite", "SpotifyAccount", "User"]
