"""API module.

This module provides the main API router for version of the web search service,
including all endpoints and their configurations.
"""
 
from fastapi import APIRouter

from app.presentation.api.v1 import api_v1_router 


# Create the main API router for v1
api_router = APIRouter(prefix="/api")

# Include all endpoint routers
api_router.include_router(api_v1_router) 

__all__ = [
    "api_router", 
]