Add GET /fs/browse directory-listing endpoint

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-01 20:15:00 -04:00
parent 1a925b3a05
commit a108964457
3 changed files with 130 additions and 0 deletions
+1
View File
@@ -77,6 +77,7 @@ func (s *Server) Router() *gin.Engine {
r.POST("/knowledge/path", s.handleKnowledgePath)
r.GET("/settings", s.handleGetSettings)
r.POST("/settings", s.handlePostSettings)
r.GET("/fs/browse", s.handleBrowse)
return r
}