Files
prod-wag-backend-automate-s…/ApiServices/ManagementService/Endpoints/routes.py
2025-04-28 02:30:06 +03:00

18 lines
368 B
Python

from fastapi import APIRouter
def get_routes() -> list[APIRouter]:
from .application.route import application_route
return [application_route]
def get_safe_endpoint_urls() -> list[tuple[str, str]]:
return [
("/", "GET"),
("/docs", "GET"),
("/redoc", "GET"),
("/openapi.json", "GET"),
("/metrics", "GET"),
]