refactor: remove AskController and related routes, update endpoint URLs (now all streamlined to agents route)

This commit is contained in:
Danny Avila 2025-06-21 14:52:17 -04:00
parent 71e850106e
commit 1b387779db
No known key found for this signature in database
GPG key ID: BF31EEB2C5CA0956
13 changed files with 6 additions and 758 deletions

View file

@ -97,7 +97,6 @@ const startServer = async () => {
app.use('/api/actions', routes.actions);
app.use('/api/keys', routes.keys);
app.use('/api/user', routes.user);
app.use('/api/ask', routes.ask);
app.use('/api/search', routes.search);
app.use('/api/edit', routes.edit);
app.use('/api/messages', routes.messages);