fix: Remove double prefix in router registration
All checks were successful
Deploy Development / deploy (push) Successful in 41s

This commit is contained in:
Lars 2026-04-21 16:12:25 +02:00
parent da634d813c
commit 9feead99ac

View File

@ -72,8 +72,8 @@ def read_root():
# Register routers
from routers import auth, profiles
app.include_router(auth.router, prefix="/api")
app.include_router(profiles.router, prefix="/api")
app.include_router(auth.router)
app.include_router(profiles.router)
# TODO: Add more routers as they are created
# from routers import clubs, groups, skills, methods, exercises