v1.0.0提交

This commit is contained in:
2026-03-31 16:03:55 +08:00
parent 5f3945ae03
commit dce843fd9d
25 changed files with 1702 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
PerToolBox Server - API v1 路由汇总
Copyright (C) 2024 Sea Network Technology Studio
Author: Canglan <admin@sea-studio.top>
License: AGPL v3
"""
from .auth import router as auth_router
from .user import router as user_router
from .todos import router as todos_router
from .notes import router as notes_router
from .tools import router as tools_router
from .stats import router as stats_router
__all__ = [
"auth_router",
"user_router",
"todos_router",
"notes_router",
"tools_router",
"stats_router"
]