## Description Right now, all our routes might be sitting directly in `server.js`. We should move them into a separate router file to keep the main file clean. ## Requirements - [ ] Create a `routes/api.js` file. - [ ] Use `express.Router()` to define the endpoints (e.g., the tokens and prices routes). - [ ] Import and mount the router in `server.js` using `app.use('/api/v1', apiRoutes)`.