Go Gin Framework with gRPC App
cd server/ && go run main.go
cd client/ && go run main.go
GET
requests/mult/:a/:b
http://localhost:8080/mult/210/204
Response:
{
"result": "42840"
}
/add/:a/:b
http://localhost:8080/add/210/204
Response:
{
"result": "42840"
}