smart-line-bot / app /Models /__init__.py
Smiel2's picture
Initial commit
2eae977 verified
Raw
History Blame Contribute Delete
538 Bytes
"""Database models."""
from app.Models.base import Base
from app.Models.user import User
from app.Models.line_user import LINEUser
from app.Models.scraping_job import ScrapingJob
from app.Models.scraping_result import ScrapingResult
from app.Models.ai_conversation import AIConversation, AIMessage
from app.Models.api_key import APIKey
from app.Models.webhook import Webhook
__all__ = [
"Base",
"User",
"LINEUser",
"ScrapingJob",
"ScrapingResult",
"AIConversation",
"AIMessage",
"APIKey",
"Webhook",
]