MAESTRO: add tests endpoint schema

This commit is contained in:
Mariusz Banach
2026-02-18 01:01:09 +01:00
parent 77c1881534
commit 158074ef32
6 changed files with 28 additions and 1 deletions

View File

@@ -1,6 +1,9 @@
from fastapi import FastAPI
from app.routers.tests import router as tests_router
app = FastAPI(title="Web Header Analyzer API")
app.include_router(tests_router)
@app.get("/")