zulip_bot/app/models/__init__.py
2025-05-16 18:00:22 +04:00

10 lines
362 B
Python

"""
Models module for the application.
Contains SQLAlchemy model definitions for Zulip database tables.
"""
from app.db import Base
# Import models to make them available through the models module
from app.models.zulip import Recipient, Stream, Message, UserProfile, IT_CHANNELS, IT_RECIPIENT_IDS
# This will be populated as we define models in the next steps