14 lines
454 B
Python
14 lines
454 B
Python
|
|
"""SQLAlchemy 模型集中注册入口。"""
|
||
|
|
|
||
|
|
|
||
|
|
def register_all() -> None:
|
||
|
|
"""显式导入以触发模型注册到 Base.metadata。"""
|
||
|
|
from . import screenshot # noqa: F401
|
||
|
|
from . import meta # noqa: F401
|
||
|
|
from . import tag # noqa: F401
|
||
|
|
from . import category # noqa: F401
|
||
|
|
from . import todo # noqa: F401
|
||
|
|
from . import job # noqa: F401
|
||
|
|
from . import watch_folder # noqa: F401
|
||
|
|
from . import setting # noqa: F401
|