24 lines
580 B
Python
24 lines
580 B
Python
#!/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"
|
|
] |