https://github.com/d-alejandro/grpc
Go, gRPC, Golang 1.22, Protobuf, Client, Server, OOP, Makefile
https://github.com/d-alejandro/grpc
client go golang grpc makefile oop protobuf protocol-buffers server
Last synced: 5 months ago
JSON representation
Go, gRPC, Golang 1.22, Protobuf, Client, Server, OOP, Makefile
- Host: GitHub
- URL: https://github.com/d-alejandro/grpc
- Owner: d-alejandro
- Created: 2024-07-29T11:18:11.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-12-19T08:30:43.000Z (over 1 year ago)
- Last Synced: 2025-01-23T00:11:18.660Z (over 1 year ago)
- Topics: client, go, golang, grpc, makefile, oop, protobuf, protocol-buffers, server
- Language: Go
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## gRPC Example
Server Address: `grpc://127.0.0.1:50051`
### RPC methods
- `GetOrder`
- `GetOrders`
### Defining the gRPC service
Full Protobuf file in `pkg/proto/service/order/v1/order.proto`
```protobuf
syntax = "proto3";
service OrderService {
rpc GetOrder (OrderRequest) returns (OrderResponse);
rpc GetOrders (Empty) returns (OrdersResponse);
}
message OrderRequest {
int64 order_id = 1;
}
message OrderResponse {
Order order = 1;
}
message Order {
int64 order_id = 1;
string user_name = 2;
string email = 3;
}
message Empty {}
message OrdersResponse {
repeated Order orders = 1;
}
```
### GetOrder response
Status code: `0 OK`
```json
{
"order": {
"order_id": 3,
"user_name": "TestUserName3",
"email": "test3@test.com"
}
}
```
### GetOrders response
Status code: `0 OK`
```json
{
"orders": [
{
"order_id": 3,
"user_name": "TestUserName3",
"email": "test3@test.com"
},
{
"order_id": 2,
"user_name": "TestUserName2",
"email": "test2@test.com"
},
{
"order_id": 1,
"user_name": "TestUserName1",
"email": "test1@test.com"
}
]
}
```