This repository has been archived on 2025-11-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Fitz_Studio/backend/router_v1.py
T
egutierrez 9c638fc3e5 Generacion de estructura ddd para backend
feat: Refactor API structure by consolidating endpoints and removing deprecated files
2025-06-16 22:22:41 +02:00

13 lines
500 B
Python

# backend/api/router_v1.py
from fastapi import APIRouter
from backend.domains.experiments import charts_examples_endpoint_v1 as charts
from backend.domains.experiments import ping_endpoint_v1
from backend.domains.text_manager import text_manager_endpoint_v1
router = APIRouter()
router.include_router(ping_endpoint_v1.router, prefix="/api/v1/ping")
router.include_router(text_manager_endpoint_v1.router, prefix="/api/v1/text_manager")
router.include_router(charts.router, prefix="/api/v1/charts")