v1.0.0提交
This commit is contained in:
24
backend/routers/v1/__init__.py
Normal file
24
backend/routers/v1/__init__.py
Normal 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"
|
||||
]
|
||||
Reference in New Issue
Block a user