MAESTRO: add analysis SSE router

This commit is contained in:
Mariusz Banach
2026-02-18 01:54:58 +01:00
parent e6fd036933
commit 2670970b24
4 changed files with 228 additions and 1 deletions

View File

@@ -1,8 +1,10 @@
from fastapi import FastAPI
from app.routers.analysis import router as analysis_router
from app.routers.tests import router as tests_router
app = FastAPI(title="Web Header Analyzer API")
app.include_router(analysis_router)
app.include_router(tests_router)