chore(nx/server): fix api_docs_js_1.default.register is not a function

This commit is contained in:
Elian Doran 2025-04-22 21:35:09 +03:00
parent d5e1c5ce1d
commit e817a55660
No known key found for this signature in database

View File

@ -431,7 +431,7 @@ function register(app: express.Application) {
apiRoute(GET, "/api/llm/providers/anthropic/models", anthropicRoute.listModels); apiRoute(GET, "/api/llm/providers/anthropic/models", anthropicRoute.listModels);
// API Documentation // API Documentation
apiDocsRoute.register(app); apiDocsRoute(app);
app.use("", router); app.use("", router);
} }