"""Platform ChatGPT Trading Engine Router.

This file is now an aggregator that includes the split sub-routers.
All logic remains the same; code was moved (not rewritten) into smaller modules.
"""

from fastapi import APIRouter

from . import teGPT_setup, teGPT_learning, teGPT_catalog, teGPT_portfolio, teGPT_analysis


router = APIRouter()

router.include_router(teGPT_setup.router)
router.include_router(teGPT_learning.router)
router.include_router(teGPT_catalog.router)
router.include_router(teGPT_portfolio.router)
router.include_router(teGPT_analysis.router)