mirror of
				https://github.com/deepset-ai/haystack.git
				synced 2025-10-31 01:39:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			323 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			323 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from fastapi import APIRouter
 | |
| 
 | |
| from rest_api.controller import file_upload
 | |
| from rest_api.controller import 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"])
 | 
