Description
A /status endpoint will allow users to check if the API is running correctly.
Steps to Implement
- Create a new route file (
routes/status.js).
- Add a simple GET endpoint returning
{ status: "OK" }.
- Test the endpoint using Postman or curl.
Expected Outcome
A simple way to check API health.