You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
747 B
Python
18 lines
747 B
Python
from fastapi import APIRouter
|
|
|
|
from admin_app.api.routes.audit import router as audit_router
|
|
from admin_app.api.routes.auth import router as auth_router
|
|
from admin_app.api.routes.panel_auth import router as panel_auth_router
|
|
from admin_app.api.routes.panel_tools import router as panel_tools_router
|
|
from admin_app.api.routes.system import router as system_router
|
|
from admin_app.api.routes.tools import router as tools_router
|
|
|
|
# Agrega as rotas do servico administrativo.
|
|
api_router = APIRouter()
|
|
api_router.include_router(auth_router)
|
|
api_router.include_router(panel_auth_router)
|
|
api_router.include_router(panel_tools_router)
|
|
api_router.include_router(system_router)
|
|
api_router.include_router(tools_router)
|
|
api_router.include_router(audit_router)
|