
- Set up project structure with FastAPI - Implement user authentication system with JWT tokens - Create database models for users, notes, and collections - Set up SQLAlchemy ORM and Alembic migrations - Implement CRUD operations for notes and collections - Add filtering and sorting capabilities for notes - Implement health check endpoint - Update project documentation
11 lines
436 B
Python
11 lines
436 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1 import auth, collections, notes, users
|
|
|
|
api_router = APIRouter(prefix="/api/v1")
|
|
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["auth"])
|
|
api_router.include_router(users.router, prefix="/users", tags=["users"])
|
|
api_router.include_router(notes.router, prefix="/notes", tags=["notes"])
|
|
api_router.include_router(collections.router, prefix="/collections", tags=["collections"])
|