Files

22 lines
437 B
Python

"""Shared ORM models for Weibo-HotSign."""
from .base import Base, get_db, engine, AsyncSessionLocal
from .user import User, InviteCode
from .account import Account
from .task import Task
from .signin_log import SigninLog
from .system_config import SystemConfig
__all__ = [
"Base",
"get_db",
"engine",
"AsyncSessionLocal",
"User",
"InviteCode",
"Account",
"Task",
"SigninLog",
"SystemConfig",
]