mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-07-22 16:31:16 +00:00
10 lines
292 B
Python
10 lines
292 B
Python
from fastapi import APIRouter
|
|
|
|
from rest_api.controller import file_upload, search, feedback
|
|
|
|
router = APIRouter()
|
|
|
|
router.include_router(search.router, tags=["search"])
|
|
router.include_router(feedback.router, tags=["feedback"])
|
|
router.include_router(file_upload.router, tags=["file-upload"])
|