mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-04 20:05:16 +02:00
feat(api): mount file-storage router
This commit is contained in:
parent
5e5f51b3a0
commit
7dad9ec3a9
1 changed files with 2 additions and 0 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
from fastapi import APIRouter
|
from fastapi import APIRouter
|
||||||
|
|
||||||
from app.automations.api import router as automations_router
|
from app.automations.api import router as automations_router
|
||||||
|
from app.file_storage.api import router as file_storage_router
|
||||||
|
|
||||||
from .agent_action_log_route import router as agent_action_log_router
|
from .agent_action_log_route import router as agent_action_log_router
|
||||||
from .agent_flags_route import router as agent_flags_router
|
from .agent_flags_route import router as agent_flags_router
|
||||||
|
|
@ -126,3 +127,4 @@ router.include_router(prompts_router)
|
||||||
router.include_router(memory_router) # User personal memory (memory.md style)
|
router.include_router(memory_router) # User personal memory (memory.md style)
|
||||||
router.include_router(team_memory_router) # Search-space team memory
|
router.include_router(team_memory_router) # Search-space team memory
|
||||||
router.include_router(automations_router) # Automations CRUD + run history
|
router.include_router(automations_router) # Automations CRUD + run history
|
||||||
|
router.include_router(file_storage_router) # Original file metadata + download
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue