For this sample project, we need to decide on the communication protocol for our API. We have two options: REST and gRPC.
We will adopt REST as the communication protocol for our API.
- Easy to implement.
- Simple and easy to understand.
- Widely adopted and supported.
- gRPC: A high-performance, open-source universal RPC framework.
We chose REST because it is simple, easy to implement, and widely adopted. It is a good fit for our project's requirements.
2024-12-31
Accepted