Skip to content

Commit

Permalink
fix: api routes
Browse files Browse the repository at this point in the history
  • Loading branch information
almeidx committed Oct 13, 2024
1 parent 5b1dc85 commit 9c4534b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions backend/src/api/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ app.use(multer().none());

const rootRouter = express.Router();

initAuth(app);
initGuildsAPI(app);
initArchives(app);
initDocs(app);
initAuth(rootRouter);
initGuildsAPI(rootRouter);
initArchives(rootRouter);
initDocs(rootRouter);

// Default route
rootRouter.get("/", (req, res) => {
Expand Down

0 comments on commit 9c4534b

Please sign in to comment.