Skip to content

Commit

Permalink
fix route
Browse files Browse the repository at this point in the history
  • Loading branch information
kenahrens committed Apr 6, 2024
1 parent 5378f8b commit 1da6914
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import routePoems from './routes/poemRoute.js';

// Use Routes
app.use('/healthz', routeHealth);
app.use('/chats', routeChats);
app.use('/poems', routePoems);
app.use('/api/chats', routeChats);
app.use('/api/poems', routePoems);

// Just to listen to /
app.get('/', (req, res) => {
Expand Down

0 comments on commit 1da6914

Please sign in to comment.