diff --git a/backend/app/main.py b/backend/app/main.py index ed7b000..3b41098 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -2,7 +2,7 @@ from fastapi import FastAPI from fastapi.middleware.cors import CORSMiddleware from app.core.config import settings -from app.api.v1 import auth, users +from app.api.v1 import auth, users, chores # Create FastAPI app app = FastAPI( @@ -24,6 +24,7 @@ app.add_middleware( # Include routers app.include_router(auth.router, prefix="/api/v1/auth", tags=["authentication"]) app.include_router(users.router, prefix="/api/v1/users", tags=["users"]) +app.include_router(chores.router, prefix="/api/v1/chores", tags=["chores"]) @app.get("/") async def root():