ReminderBot/bot/models/__init__.py
leo f453a7917e Initial commit: add reminderBot project structure
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 11:40:58 +08:00

6 lines
219 B
Python

from bot.models.database import Base, Session, init_db
from bot.models.user import User
from bot.models.reminder import Reminder, ReminderLog
__all__ = ["Base", "Session", "init_db", "User", "Reminder", "ReminderLog"]