This pull request introduces endpoint categorization for the endpoints in our FastAPI application. Previously, all endpoints were listed under the default category in the Swagger documentation, which could make navigation and understanding of the API structure challenging, especially as the API grows.
To address this, I've organized the endpoints into a separate category using FastAPI tags. Now, when accessing the Swagger UI, users will find the endpoints neatly grouped under the corresponding category, improving readability and usability.
This enhancement enhances the overall organization and documentation clarity of our API, facilitating easier navigation and understanding for developers and users alike.
This pull request introduces endpoint categorization for the endpoints in our FastAPI application. Previously, all endpoints were listed under the default category in the Swagger documentation, which could make navigation and understanding of the API structure challenging, especially as the API grows.
To address this, I've organized the endpoints into a separate category using FastAPI tags. Now, when accessing the Swagger UI, users will find the endpoints neatly grouped under the corresponding category, improving readability and usability.
This enhancement enhances the overall organization and documentation clarity of our API, facilitating easier navigation and understanding for developers and users alike.