Files
opencode-build/fs-backend/app/__init__.py
T
2026-07-29 10:07:13 +08:00

8 lines
148 B
Python

"""
包初始化文件
"""
from app.core.config import settings
from app.routers.fs import router as fs_router
__all__ = ["settings", "fs_router"]