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