10 lines
362 B
Python
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 |