Files
weibo_signin/backend/shared/models/__init__.py

22 lines
437 B
Python
Raw Normal View History

2026-03-09 14:05:00 +08:00
"""Shared ORM models for Weibo-HotSign."""
from .base import Base, get_db, engine, AsyncSessionLocal
from .user import User, InviteCode
2026-03-09 14:05:00 +08:00
from .account import Account
from .task import Task
from .signin_log import SigninLog
from .system_config import SystemConfig
2026-03-09 14:05:00 +08:00
__all__ = [
"Base",
"get_db",
"engine",
"AsyncSessionLocal",
"User",
"InviteCode",
2026-03-09 14:05:00 +08:00
"Account",
"Task",
"SigninLog",
"SystemConfig",
2026-03-09 14:05:00 +08:00
]