Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
ckuhtz committed Jul 16, 2024
1 parent cccef44 commit 097c1b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions api/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from routers.configuration.operations import router as configuration_router
from routers.database.operations import router as database_router
from routers.internal.operations import router as swissarmy_router
from routers.test.operations import router as test_router
# from routers.test.operations import router as test_router



Expand Down Expand Up @@ -42,7 +42,7 @@
# dump environment we care about

for var in env:
logger.info(f'{var}={env[var]}')
logger.debug(f'{var}={env[var]}')

# add REST routes

Expand All @@ -52,8 +52,8 @@
logger.debug('/db route defined.')
api.include_router(swissarmy_router, prefix='/internal')
logger.debug('/internal route defined.')
api.include_router(test_router, prefix='/test')
logger.debug('/test route defined.')
# api.include_router(test_router, prefix='/test')
# logger.debug('/test route defined.')

# start API

Expand Down

0 comments on commit 097c1b6

Please sign in to comment.