初始化

This commit is contained in:
lhx
2025-09-26 15:58:32 +08:00
commit fe73da9cf5
45 changed files with 1075 additions and 0 deletions

5
app/api/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
from .account import router as account_router
from .database import router as database_router
from .task import router as task_router
__all__ = ["account_router", "database_router", "task_router"]