- Add AI code generation requirements to AGENTS.md - Add module-level docstrings to all 46 Python modules - Add detailed Google-style docstrings to all classes and functions - Remove all inline comments following self-documenting code principle - Include Args, Returns, Raises sections in function docstrings - Add Attributes and Examples sections to class docstrings
13 lines
274 B
Python
13 lines
274 B
Python
"""API router configuration.
|
|
|
|
This module sets up the main API router and includes versioned
|
|
sub-routers for API organization.
|
|
"""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from app.presentation.api.v1 import router as v1_router
|
|
|
|
router = APIRouter()
|
|
router.include_router(v1_router)
|