123
This commit is contained in:
18
backend/shared/models/__init__.py
Normal file
18
backend/shared/models/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""Shared ORM models for Weibo-HotSign."""
|
||||
|
||||
from .base import Base, get_db, engine, AsyncSessionLocal
|
||||
from .user import User
|
||||
from .account import Account
|
||||
from .task import Task
|
||||
from .signin_log import SigninLog
|
||||
|
||||
__all__ = [
|
||||
"Base",
|
||||
"get_db",
|
||||
"engine",
|
||||
"AsyncSessionLocal",
|
||||
"User",
|
||||
"Account",
|
||||
"Task",
|
||||
"SigninLog",
|
||||
]
|
||||
Reference in New Issue
Block a user