eda-franky-v1 / src /api /v1 /__init__.py
architojha's picture
pushing api
8675ade
raw
history blame contribute delete
285 Bytes
from fastapi import APIRouter
from .build_ml_plan import build_ml_plan_router
from .eda_engine import eda_engine_router
v1_router = APIRouter()
v1_router.include_router(build_ml_plan_router, prefix='/build-ml-plan')
v1_router.include_router(eda_engine_router, prefix='/eda-engine')