added application page

This commit is contained in:
2025-04-28 02:30:06 +03:00
parent 346b132f4c
commit ac344773c5
27 changed files with 1796 additions and 347 deletions

View File

@@ -0,0 +1,17 @@
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"),
]