From 70fb8c0b9159e784e6124b85577b89ebaf9d8b83 Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Tue, 13 Jun 2023 12:08:05 -0400 Subject: [PATCH] Trying to fix a logging bug? --- app/main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/main.py b/app/main.py index f18c54b..db8b494 100644 --- a/app/main.py +++ b/app/main.py @@ -91,10 +91,10 @@ app.mount('/static', StaticFiles(directory='static'), name='static') # Set up each route once the router has been imported -# app.include_router( -# aether_cfg.router, -# tags=['Aether Config'], -# ) +app.include_router( + aether_cfg.router, + tags=['Aether Config'], +) # app.include_router( # api_crud.router, # prefix='/crud',