From de569915a24480f966af53738f10094c46c9e44a Mon Sep 17 00:00:00 2001 From: Friedrich Lindenberg Date: Thu, 5 Oct 2023 10:41:16 +0200 Subject: [PATCH] re-order api docs --- yente/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yente/app.py b/yente/app.py index f057e278..87be8a6f 100644 --- a/yente/app.py +++ b/yente/app.py @@ -76,8 +76,8 @@ def create_app() -> FastAPI: allow_methods=["*"], allow_headers=["*"], ) - app.include_router(search.router) app.include_router(match.router) + app.include_router(search.router) app.include_router(reconcile.router) app.include_router(admin.router)