feat(home): add drag file to chat input, add settings config API

This commit is contained in:
2026-03-14 22:22:35 +08:00
parent cbc1af7348
commit e950484af6
6 changed files with 74 additions and 1 deletions

View File

@@ -51,4 +51,13 @@ router.post(
}),
)
router.get(
'/config',
asyncHandler(async (req: Request, res: Response) => {
successResponse(res, {
notebookRoot: NOTEBOOK_ROOT,
})
}),
)
export default router