You've already forked DataMate
feat: Implement data synthesis task management with database models and API endpoints (#122)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
from fastapi import APIRouter
|
||||
|
||||
router = APIRouter(
|
||||
prefix="/synth",
|
||||
tags = ["synth"]
|
||||
)
|
||||
|
||||
# Include sub-routers
|
||||
from .generation_api import router as generation_router_router
|
||||
|
||||
router.include_router(generation_router_router)
|
||||
Reference in New Issue
Block a user